Markdown Syntax
-This document describes some of the more important parts of Markdown (for writers, that is). There's a lot more to the syntax than is mentioned here, though. To get the full syntax documentation, go to John Gruber's Markdown Syntax page
+{% trans "Markdown Syntax" %}
+{% blocktrans %}This document describes some of the more important parts of Markdown (for writers, that is). There's a lot more to the syntax than is mentioned here, though. To get the full syntax documentation, go to John Gruber's Markdown Syntax page{% endblocktrans %}
Headers
+{% trans "Headers" %}
- This is an H1 + {% trans "This is an H1" %} =============
|
- This is an H1+{% trans "This is an H1" %} |
- This is an H2 + {% trans "This is an H2" %} -------------
|
- This is an H2+{% trans "This is an H2" %} |
- # This is H1
+ # {% trans "This is an H1" %}
|
- This is an H1+{% trans "This is an H1" %} |
- ## This is H2
+ ## {% trans "This is an H2" %}
|
- This is an H2+{% trans "This is an H2" %} |
- ### This is H3
+ ### {% trans "This is an H3" %}
|
- This is an H3+{% trans "This is an H3" %} |
Paragraphs
+{% trans "Paragraphs" %}
This is paragraph one.
+ {% trans "This is paragraph one." %}
This is paragraph two.
+ {% trans "This is paragraph two." %}
Links
+{% trans "Links" %}
- [link text](http://example.com/)
+ [{% trans "link text" %}]({% trans "http://example.com/" %})
|
- link text + {% trans "link text" %} |
Formatting
+{% trans "Formatting" %}
- **This is bold**
+ **{% trans "This is bold" %}**
|
- This is bold + {% trans "This is bold" %} |
- __This is also bold__
+ __{% trans "This is also bold" %}__
|
- This is also bold + {% trans "This is also bold" %} |
- *This is italics*
+ *{% trans "This is italics" %}*
|
- This is italics + {% trans "This is italics" %} |
- _This is also italics_
+ _{% trans "This is also italics" %}_
|
- This is also italics + {% trans "This is also italics" %} |
- ***This is bold and italics***
+ ***{% trans "This is bold and italics" %}***
|
- This is italics + {% trans "This is bold and italics" %} |
- ___This is also bold and italics___
+ ___{% trans "This is also bold and italics" %}___
|
- This is italics + {% trans "This is also bold and italics" %} |
Blockquotes
+{% trans "Blockquotes" %}
- > This is part of a blockquote. - > This is part of the same blockquote.
+ > {% trans "This is part of a blockquote." %} + > {% trans "This is part of the same blockquote." %}
|
- This is part of a blockquote. {% trans "This is part of a blockquote." %} |
- > This is part of a blockquote. - This continues the blockquote even though there's no bracket. - The blank line ends the blockquote.
+ > {% trans "This is part of a blockquote." %} + {% trans "This continues the blockquote even though there's no bracket." %} + {% trans "The blank line ends the blockquote." %}
|
- This is part of a blockquote. The blank line ends the blockquote. +{% trans "This is part of a blockquote." %} {% trans "The blank line ends the blockquote." %} |
Lists
+{% trans "Lists" %}
- 1. Item 1 - 2. Item 2 - 3. Item 3
+ 1. {% trans "Item" %} 1 + 2. {% trans "Item" %} 2 + 3. {% trans "Item" %} 3
|
|
- * A list item - * Another list item - * A third list item
+ * {% trans "A list item" %} + * {% trans "Another list item" %} + * {% trans "A third list item" %}
|
|