Prevent merging lines in quotes?
I was wondering how I can stop quotes from merging onto one line. For example in markdown I have
> one line
> a separate line
But it renders on blot as
> one one a separate line
Is there a simple way to prevent/override this?
ahah it does it here too, but I have two separate ">" separated by a newline in the first one
Answered 2 years ago · Edit answerPutting two spaces at the end of the line will do the trick.
> one line <--two spaces at the end
> a separate line
Shows up as:
one line
a separate line
Ray
Answered 2 years ago · Edit answer