You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Norg spec doesn't seem to have a feature to put hard line break (<br/> in HTML) inside a paragraph.
I think escaped character can be an intuitive way to have it. GFM supports both \n and \\\n, but because Norg is free-form markup language, just \\\n would be a nice option.
I realized that the current usage of \\n within norg is very counterintuitive. Currently when you use the escape character:
here is\
some text
The expected result (as per the spec) should be:
here issome text
However the \ char is more of a "make this verbatim". When you use \* you don't expect that character to be a bold marker (in other words, it should be rendered as-is). I'm happy to make \\n be the equivalent of <br>, and find another solution to the first code snippet.
Norg spec doesn't seem to have a feature to put hard line break (
<br/>
in HTML) inside a paragraph.I think escaped character can be an intuitive way to have it. GFM supports both
\n
and\\\n
, but because Norg is free-form markup language, just\\\n
would be a nice option.example:
converted to:
which would be rendered like:
The text was updated successfully, but these errors were encountered: