我有两个降价文件:parent.md
和child.md
。
所以parent.md
:
# Main section
## sub-section
我想引用## sub-section
中的child.md
。
有什么想法吗?
答案 0 :(得分:3)
对我有用的是 parent.md:
[link][./file.md#section-name) // note the dash!
在 child.md 中:
## ...
## section name
我通过 jetbrains IDE 在本地进行了测试。
答案 1 :(得分:2)
在MarkDown
中,可以使用超链接进行引用:
# Main section
## [sub-section](./child.md#sub-section)
## [sub-section](/child.md#sub-section)
## [sub-section](child.md#sub-section)
不幸的是,无法直接嵌入另一个Markdown文件
另一种选择是使用捕获其他文件中的切口:
# Main section
## sub-section
![ImageTheOtherMarkdown](Screent.png)