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

orschiro picture orschiro · Feb 6, 2018 · Viewed 12.8k times · Source

Markdown has this great feature to wrap a bunch of quote between three backticks (```) to open the wrap and another three to close it. The content between those can span several lines and even include blank lines. Everything will be preserved.

Is there an equivalent for the quote that doesn't require me to add > in front of every line I want to wrap?

Something like >>> to start the wrap quote and >>> to close it again?

Answer

Tamás Sengel picture Tamás Sengel · Feb 6, 2018

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

If you use line breaks instead of paragraphs, you only need one >:

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

Result:

Lorem
ipsum
dolor sit amet