github.com blockquote 内的高级降价

github.com advanced markdown inside blockquote

我正在为 github.com 上的一个存储库编写 README.md
作为此 README.md 的一部分,我想引用另一个 README.md(来自另一个存储库),这意味着在引用中使用高级降价。

最终我想看到这样的东西:



现在我正在尝试通过以下降价来实现这一点:

 * Item 1
    * Use the following   
        > * First level of quoted list
        >   *  Second level of quoted ***list***  
        >   * > Nested *quote*
 * Item 2

有几个在线降价编辑器打算模拟 github 降价行为:ones that work much better than github itself, others 更真实一些,但在 github 中它看起来像这样:



看来 github 支持块引用内的一些简单降价(如粗体、斜体等),但不支持高级降价(如列表、引号等)

有什么方法可以引用 github 上的复杂降价吗?

GitHub 对在开始块引用之前需要空行(以创建新段落)很挑剔。这似乎可以满足您的要求:

* Item 1
    * Use the following

        > * First level of quoted list
        >     * Second level of quoted ***list***
        >
        >     * > Nested *quote*
* Item 2