You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the word document is in a sharepoint folder, the following plantuml directive doesn't work : @startuml !include .\resources\open_session.md @enduml
It seems to be a problem with the relative path. When I change the relative path by an absolute path, it works.
The text was updated successfully, but these errors were encountered:
5iBri
pushed a commit
to 5iBri/word-template
that referenced
this issue
Jun 6, 2023
…d on sharepoint folder
The problem was located when the plugin uses the property ActiveDocument.Path. On a sharepoint folder, this property contains the sharepoint URL, and not the local path.
Fix:
- Add A module called LibFileTools (based on https://github.com/cristianbuse/VBA-FileTools)
- Replace all the "ActiveDocument.Path" by a call to the API "GetLocalPath()"
5iBri
pushed a commit
to 5iBri/word-template
that referenced
this issue
Jun 7, 2023
…d on sharepoint folder
The problem was located when the plugin uses the property ActiveDocument.Path. On a sharepoint folder, this property contains the sharepoint URL, and not the local path.
Fix:
- Add A module called LibFileTools (based on https://github.com/cristianbuse/VBA-FileTools)
- Replace all the "ActiveDocument.Path" by a call to the API "GetLocalPath()"
When the word document is in a sharepoint folder, the following plantuml directive doesn't work :
@startuml
!include .\resources\open_session.md
@enduml
It seems to be a problem with the relative path. When I change the relative path by an absolute path, it works.
The text was updated successfully, but these errors were encountered: