{% load i18n %}

Hello world!


Hello world!



Title 1Title2
Data 1Data 2

Title 1 Title 2
Data 1 Data 2


Test

Test


{% block title1 %}Title{% endblock %}
{% block title2 %} Title {% endblock %}

{% for letter in "abc" %}letter: {{letter}}
{% endfor %} {% if True %}Hello!{% endif %}
{% for letter in "abc" %} letter: {{letter}}
{% endfor %} {% if True %} Hello! {% endif %}

do not process indented text

def test():
x = 10
y = 20

finish!


do not process indented text

def test():
x = 10
y = 20

finish!



do not process text block

def test2():
x = 10
y = 20

finish!


do not process text block

def test2():
x = 10
y = 20

finish!



Markdown block

H1

Test test test

Markdown block

H1

Test test test



{% translate "This is the title." %}


This is the title.



{% translate "This is full line translated text" %}
This is full line translated text

See page source
See page source

See page source
See page source

See page source
See page source

function test_js(a,b){ var a=10; a=a+1; if(a>1){ a=1 } return 0 }
function test_js(a,b){ var a=10; a=a+1; if (a>1){ a=1 } return 0 }

H1

H2

H3

  1. test
  2. test2

  3. a1

  4. a2

Test test test2

Heading

Sub-heading

Alternative heading

Paragraphs are separated by a blank line.

Two spaces at the end of a line produce a line break.

Text attributes italic, bold, monospace.

Horizontal rule:


Bullet lists nested within numbered list:

  1. fruits
    • apple
    • banana
  2. vegetables
    • carrot
    • broccoli

A link.

Image

Markdown uses email-style characters for blockquoting.

Multiple paragraphs need to be prepended individually.

Most inline HTML is supported.

Markdown extensions

Abbreviations

The HTML specification is maintained by the W3C.

Attribute Lists

This is a paragraph.

Definition Lists

Apple
Pomaceous fruit of plants of the genus Malus in the family Rosaceae.
Orange
The fruit of an evergreen tree of the genus Citrus.

Fenced Code Blocks

<p>HTML Document</p>
def test(x):
    return x

Tables

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell