如何在 github 风格的 Markdown 列表项中添加块引用?

问题描述 投票:0回答:1

我想在列表中添加引号(有序或无序)。 缩进很重要。我想要引用(块引用)突出显示样式,而不是代码。缩进 > 符号会删除引号突出显示。

markdown github-flavored-markdown blockquote
1个回答
31
投票

这对我有用:

* list item 1

    > Quote (note: there must be 4 spaces before the `>`, 1-3 spaces after the `>`, and there must be blank lines before and after this quote)

* list item 2
* list item 3

渲染(使用 GitHub 样式)为:

  • 列出项目1

    引用(注意:

    >
    之前必须有4个空格,
    >
    之后必须有1-3个空格,并且此引用前后必须有空行)

  • 列出项目 2

  • 列出第3项


确保您使用:

  • 四个空格缩进您的
    >
  • >
    和引用的文本之间
    有一到三个空格
  • 引用前后的空行
这也适用于编号列表,上面表示包含三个项目的单个列表。

© www.soinside.com 2019 - 2024. All rights reserved.