How can I write two separate blockquotes in sequence using markdown?

后端 未结 7 584
滥情空心
滥情空心 2021-02-01 00:25

I need to place two blockquotes in sequence, however markdown combines them into a single blockquote. The only way I can get them to separate is placing some junk text between t

相关标签:
7条回答
  • 2021-02-01 01:04

    You could use pandoc, which parses your original input as two consecutive blockquotes.

    0 讨论(0)
  • 2021-02-01 01:08

    An empty header, #, followed by a space also works.

    > Hello World
    
    # 
    
    > Goodbye world
    

    Unfortunately it isn't much better than <!-- --> But I kind of like it more, and use it.

    0 讨论(0)
  • 2021-02-01 01:09

    One way to do so is by just adding </> after first blockquote followed by a newline. And by this way nothing gets printed as well.

    First quote

    Second Quote

    0 讨论(0)
  • 2021-02-01 01:14

    Try this:

    Use a U+200B character in-between the quotes, which is defined as a zero-length space to break up the quotes.

    > Quote
    
    ​
    
    > Quote
    

    It looks like this:

    > Quote

    > Quote

    0 讨论(0)
  • 2021-02-01 01:17

    You have something like your first block quote, then 2 enters and on the second enter give a # symbol for Heading but leave the heading blank and then you next quote in next line.

    This is one quote

    This is another quote

    0 讨论(0)
  • 2021-02-01 01:20

    >If I try a non breaking space

    &nbsp;

    >it line breaks; don't ask me how

    Result:

    If I try a non breaking space

     

    it line breaks; don't ask me how

    0 讨论(0)
提交回复
热议问题