Link docsify 中的一个 "external" 文件
Link an "external" file in docsify
这是我的文档文件结构
|__docs/
| |__config-docsify.js
| |__index.html
| |__README.md
|__README.md
如您所见,Docsify 文件位于 docs/
目录中,我想 link /docs/README.md
文件作为 README 文件的根 (/README.md
) .也就是说,当我点击 /docs/README.md
文件中的 link 时,我被重定向到 /README.md
文件,或者至少我以某种方式获得了它的内容。
但是,当我尝试像这样添加 link 时
<!-- projectfolder/docs/README.md file -->
See the [README](../README.md) file in the root directory.
我被重定向到不存在的 localhost:3000/../README.md
。
有谁知道 link 与 docsify 文件不在同一文件夹(或子文件夹)中的文件的方法?
编辑
我正在使用
为 docs
文件夹提供服务
docsify serve docs/
您可以使用嵌入文件嵌入外部文件(或 raw.github...):https://docsify.js.org/#/embed-files
这是我的文档文件结构
|__docs/
| |__config-docsify.js
| |__index.html
| |__README.md
|__README.md
如您所见,Docsify 文件位于 docs/
目录中,我想 link /docs/README.md
文件作为 README 文件的根 (/README.md
) .也就是说,当我点击 /docs/README.md
文件中的 link 时,我被重定向到 /README.md
文件,或者至少我以某种方式获得了它的内容。
但是,当我尝试像这样添加 link 时
<!-- projectfolder/docs/README.md file -->
See the [README](../README.md) file in the root directory.
我被重定向到不存在的 localhost:3000/../README.md
。
有谁知道 link 与 docsify 文件不在同一文件夹(或子文件夹)中的文件的方法?
编辑
我正在使用
为docs
文件夹提供服务
docsify serve docs/
您可以使用嵌入文件嵌入外部文件(或 raw.github...):https://docsify.js.org/#/embed-files