Category: Markdown

Markdown notation.

  • Markdown

    Heading <h> (#)

    # Heading1
    ## Heading2
    ### Heading3
    #### Heading4
    ##### Heading5
    ###### Heading6

    Break <br> (2 spaces)

    line1␣␣
    line2␣␣

    Paragraph <p> (blank line)

    Paragraph1
    Paragraph2

    Horizontal Rules <hr> (—, ___, ***)

    ---

    Emphasis <em>,<strong> (*, _)

    * emphasis *
    ** strong **

    Orderd List <ol> (1. )

    1. list1
    1. list2
    1. list3

    Any numbers are acceptable. If all the numbers are set to 1, then numbers are automatically order properly.

    Unorderd List <ul> (+, -, *)

    + list1
    + list2
    + list3

    Preformatted Text <pre> (4 Spaces, Tab)

    ␣␣␣␣This is a
    ␣␣␣␣Preformatted
    ␣␣␣␣Document.

    Blockquote <blockquote> (>, >>)

    > Quote
    >> Sub Quote
    > Quote

    Code <code> (‘ )

    'printf("Hello\n");'