with GFM enabled, double-space for newline does not work #152
Labels
Comments
Thanks for reporting this bug! I have changed the implementation so that If |
gettalong
added a commit
that referenced
this issue
Sep 9, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Markdown a double-space at the end of the line is supposed to create a break, like this:
With GFM enabled and
hard_wrap
turned off, the same should happen, but it doesn't:I expect the double-space followed by end of line to be converted to a newline in GFM (when hard_wrap is turned off), because this is what happens in standard markdown, and the
hard_wrap
option is meant to turn embedded newlines in paragraphs into<br/>
, so with the option off it should revert to normal markdown behaviour.(with
hard_wrap
turned on one gets "One
\n" because the newline after the two spaces is turned into a br, but I expect this anyway).\nTwo
The text was updated successfully, but these errors were encountered: