Jump to content

Markdown: Difference between revisions

40 bytes removed ,  3 February 2021
Line 7: Line 7:
Newlines in markdown can be created with either two trailing whitespaces or a trailing backslash.   
Newlines in markdown can be created with either two trailing whitespaces or a trailing backslash.   
The Google Style Guide suggests using a trailing backslash and never using trailing whitespaces.
The Google Style Guide suggests using a trailing backslash and never using trailing whitespaces.
<syntaxhighlight lang="markdown">
<pre>
One line\
One line\
Another line
Another line
</syntaxhighlight>
</pre>


==Renderers==
==Renderers==