How can I wrap a multi-line quote in GFM?

There is no way to do that in pure Markdown, nor in GFM.

If you use line breaks (two spaces at the end of every line except the last) instead of paragraphs, you only need one >:

> Lorem[space][space]
ipsum[space][space]
dolor sit amet

Result:

Lorem
ipsum
dolor sit amet

Leave a Comment