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
The original path is a abs path, but it is already on a local disk.
The new path is a relative path, which is often at same directory as the markdown file or the sub directory of the markdown file.
For example:
in file mds/test.md: ![](C:\Users\bob\Downloads\20230404180127.png)
in file converted_mds/test.md: ![](./images/20230807_1129162009.png)
The file C:\Users\bob\Downloads\20230404180127.png is copied to converted_mds/images/20230807_1129162009.png.
For example,
in origin.md, there is a line like this:
![](C:\Users\bob\Downloads\20230404180127.png)
convert it to:
![](./images/20230807_1129162009.png)
After converting, the file is also copied to the new directory.
Sometimes we need such conversion because sphinx-doc can not refer to a path out of the source directory.
Thank you!
The text was updated successfully, but these errors were encountered: