{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Markdown Info" %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{% trans 'Markdown Info' %}

{% blocktrans %} Markdown is lightweight markup language that can be used to format plain text easily. This site uses the Python Markdown library to convert your text into nice looking HTML. Its full markdown documentation can be found here. An incomplete but most likely sufficient documentation can be found below. {% endblocktrans %}

{% trans 'Headers' %}


    # Header 1
    ## Header 2
    ### Header 3
    #### Header 4
    ##### Header 5
    ###### Header 6
    


Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

{% trans 'Formatting' %}


        {% trans 'Line breaks are inserted by adding two spaces after the end of a line' %}
        {% trans 'or by leaving a blank line in between.' %}

        **{% trans 'This text is bold' %}**
        *{% trans 'This text is italic' %}*
        > {% trans 'Blockquotes are also possible' %}
    


{% trans 'Line breaks are inserted by adding two spaces after the end of a line' %}
{% trans 'or by leaving a blank line in between.' %}

{% trans 'This text is bold' %}
{% trans 'This text is italic' %}

{% trans 'Blockquotes are also possible' %}


{% trans 'Lists' %}

{% trans 'Lists can ordered or unordered. It is important to leave a blank line before the list!' %}

        {% trans 'Ordered List' %}

        - {% trans 'unordered list item' %}
        - {% trans 'unordered list item' %}
        - {% trans 'unordered list item' %}

        {% trans 'Unordered List' %}

        1. {% trans 'ordered list item' %}
        2. {% trans 'ordered list item' %}
        3. {% trans 'ordered list item' %}
    


{% trans 'Ordered List' %} {% trans 'Unordered List' %}
  1. {% trans 'ordered list item' %}
  2. {% trans 'ordered list item' %}
  3. {% trans 'ordered list item' %}

{% trans 'Images & Links' %}

{% trans 'Links can be formatted with Markdown. This application also allows to paste links directly into markdown fields without any formatting.' %}

        https://github.com/vabene1111/recipes
        [](https://github.com/vabene1111/recipes)
        [GitHub](https://github.com/vabene1111/recipes)

        ![{% trans 'This will become an image' %}]({% static 'assets/favicon.svg' %})
    


https://github.com/vabene1111/recipes
GitHub
{% trans 'This will become an image' %}

{% trans 'Tables' %}

{% trans 'Markdown tables are hard to create by hand. It is recommended to use a table editor like this one.' %}

        |  {% trans 'Table' %} | {% trans 'Header' %}  |
        |--------|---------|
        | {% trans 'Table' %}  | {% trans 'Cell' %}    |
    


{% trans 'Table' %} {% trans 'Header' %}
{% trans 'Table' %} {% trans 'Cell' %}


{% endblock %}