Markdown:引用另一个文件中的部分

时间:2018-07-05 09:19:42

标签: markdown

我有两个降价文件:parent.mdchild.md

所以parent.md

# Main section

## sub-section

我想引用## sub-section中的child.md

有什么想法吗?

2 个答案:

答案 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)