Open
Description
Please forgive me if this is the wrong issue tracker.
Consider this long line in a .md
file:
> Here is a long quote where I type for many characters overflowing my line length limit of 79 characters.
In default Pandoc markdown, when I reflow this line (gqap
) - I get:
> Here is a long quote where I type for many characters overflowing my line
length limit of 79 characters.
Notice the new line at the beginning of the second line. I know that the whole thing is still a valid block quote, according to https://daringfireball.net/projects/markdown/syntax#blockquote. But, in other modes, such as standard markdown mode (rather than pandoc markdown), or rmd
mode, I get:
> Here is a long quote where I type for many characters overflowing my line
> length limit of 79 characters.
I personally find this neater. Should this also be the behavior for Pandoc markdown?