Searching...

Matching results

    Markdown basics

    Here are the basics of the Markdown syntax

    Initializing Table Of Contents...

    Headers

    Headers are identified with one or multiple #. The number of # corresponds to the level.

    ## Level 2 header
    ### Level 3 header
    

    Paragraphs

    A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line — a line containing nothing but spaces or tabs is considered blank.)

    Normal paragraphs should not be indented with spaces or tabs.


    Horizontal line

    Just use 3 -

    ---
    

    Phrase emphasis

    Markdown uses asterisks to indicate spans of emphasis.

    *Single asterisk for italic*
    

    Single asterisk for italic

    **Double asterisks for bold**
    

    Double asterisks for bold


    Lists

    Unordered (bulleted) lists use asterisks as list markers.

    *   Candy.
    *   Gum.
    *   Booze.
    
    • Candy.
    • Gum.
    • Booze.

    Ordered (numbered) lists use regular numbers, followed by periods, as list markers:

    1.  Red
    2.  Green
    3.  Blue
    
    1. Red
    2. Green
    3. Blue

    Code

    In a regular paragraph, you can create code span by wrapping text in backtick quotes.

    For instance

    Use this shortcode `{{% toc %}}` to add a toc to your page.
    

    Use this shortcode {{% toc %}} to add a toc to your page.

    To specify an entire block of code, indent every line of the block by 4 spaces or 1 tab.

    For instance

    {{% info %}}
    
    Your info message
    
    {{% /info %}}
    

    Comment

    You may want to comment out a section to use later.

    For instance

    Use the codes <!-- and --> on either side of the section you want to hide.

    <!-- This section may be out of date. Confirm that we can delete it. -->
    
    TOP