Markdown Info

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.

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

Formatting


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

        **This text is bold**
        *This text is italic*
        > Blockquotes are also possible
    


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

This text is bold
This text is italic

Blockquotes are also possible


Lists

Lists can ordered or unordered. It is important to leave a blank line before the list!

        Ordered List

        - unordered list item
        - unordered list item
        - unordered list item

        Unordered List

        1. ordered list item
        2. ordered list item
        3. ordered list item
    


Ordered List
  • unordered list item
  • unordered list item
  • unordered list item
Unordered List
  1. ordered list item
  2. ordered list item
  3. ordered list item

Images & Links

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)

        ![This will become an image](/static/assets/logo_color_svg.d7c2e31a63b7.svg)
    



Tables

Markdown tables are hard to create by hand. It is recommended to use a table editor like this one.

        |  Table | Header  |
        |--------|---------|
        | Table  | Cell    |
    


Table Header
Table Cell