Markdown: Difference between revisions

From David's Wiki
No edit summary
Line 8: Line 8:
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">
<syntaxhighlight lang="markdown">
One line
One line\
Next line\
Another line
Another line
</syntaxhighlight>
</syntaxhighlight>

Revision as of 15:45, 12 August 2020

Markdown is the typesetting language used in Github and elsewhere (including Google).

Syntax

See #Resources

Newlines

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.

One line\
Another line

Renderers

Below are a few programs scripts for rendering Markdown.

Resources