1

我正在尝试创建一个脚注,其中包含脚注的块引用。像这样:

This is a footnoted item[^1].

[^1]: > Foot note with a blockquote.

    > Another blockquote.

但结果是这样的:

This is a footnoted item1.

1. > Footnote with a blockquote.

       Another blockquote.

所以第一段不默认为块引用。是否可以阻止引用第一段?

4

1 回答 1

0

冒号和大于号之间不能有空格。所以不是: > F但是:> F。这似乎解决了问题。

This is a footnoted item[^1].

[^1]:> Foot note with a blockquote.

    > Another blockquote.
于 2013-11-09T07:40:17.267 回答