如何在Markdown中创建非代码块报价而不标记每一行?

时间:2016-09-23 13:34:56

标签: markdown

偶尔我希望能够像这样一个缩进的块引用:

>Paragraph 1...

>Paragraphs ...

>Paragraph N...

正确呈现:

  

第1段......

     

段落......

     

第N段......

但是因为有很多段落,所以将>符号放在每个段落之前是很乏味的。有没有办法做到这一点:

<indent (and maybe style) every thing between here>
Paragraph 1...
Paragraphs ...
Paragraph N...
<and here>

1 个答案:

答案 0 :(得分:0)

您可以在一行末尾放置2个或更多空格,然后返回下一行。那样你只需要&gt;。在这种情况下不确定样式,但希望这有助于

> at the end of this line is 2 spaces  
now i'm on a new line, with 2 spaces at the end  
and the next line
  该行末尾的

是2个空格
      现在我在一条新线上,最后有两个空格       和下一行

至于在两段之间得到一个空行,我不确定单个&gt;是否可行。