{% extends 'markup/base.html' %} {% block pagetitle %}: Markup help{% endblock pagetitle %} {% block breadcrumb_items %} {{ block.super }} Help Markdown {% endblock %} {% load process_markup %} {% block content %}

Markdown help

You will find below a quick summary of Markdown basics, as enabled here at SciPost.

You can find more details about Markdown's syntax at this page.

Quick links

Paragraphs and line breaks

If you write:

{{ snippets.paragraphs }}

You will get:

{{ snippets.paragraphs|process_markup:'Markdown' }}

Headlines

If you write:

{{ snippets.headers }}

You will get:

{{ snippets.headers|process_markup:'Markdown' }}

Emphasis

If you write:

{{ snippets.emphasis }}

You will get:

{{ snippets.emphasis|process_markup:'Markdown' }}

Blockquotes

If you write:

{{ snippets.blockquotes }}

You will get:

{{ snippets.blockquotes|process_markup:'Markdown' }}

Lists

If you write:

{{ snippets.lists }}

You will get:

{{ snippets.lists|process_markup:'Markdown' }}

Code

If you write:

{{ snippets.code }}

You will get:

{{ snippets.code|process_markup:'Markdown' }}

Horizontal rules

If you write:

{{ snippets.hr }}

You will get:

{{ snippets.hr|process_markup:'Markdown' }}

If you write:

{{ snippets.links }}

You will get:

{{ snippets.links|process_markup:'Markdown' }}

Mathematics

If you write:

{{ snippets.maths_inline_online }}

You will get:

{{ snippets.maths_inline_online|process_markup:'Markdown' }}
{% with language='Markdown' %}

Math snippets

{{ math_snippets.length }} {% for snippet in math_snippets %}

{{ snippet.title }}

{{ snippet.raw }}
{{ snippet.raw|process_markup:language }}
{% endfor %}
{% endwith %} {% endblock content %}