Markdown Cheat Sheet for Launchman

Format your page with Markdown syntax

Table of Contents

    Launchman uses Markdown to format text in the pages.

    | | | | | | | --- | --- | --- | --- | --- | | | | | | | | | | | | | | | | | | |

    Heading

    # H1
    ## H2
    ### H3
    #### H4
    ##### H5
    

    Text

    Bold **bold text**
    
    Italic _italicized text_
    

    Blockquote

    > blockquote
    

    Lists

    Ordered List

    1. First item
    2. Second item
    3. Third item
    

    Unordered List

    - First item
    - Second item
    - Third item
    

    Code

    `code`
    
    console.log("hello world!")
    

    Horizontal Rule

    Link

    [title](https://www.example.com)
    

    Image

    ![alt text](image.jpg)
    

    Contact

    Email

    [Email us at name@email.com](mailto:name@email.com)
    

    Telephone

    [Call us at 123-456-7890](tel:123-456-7890)
    

    Best practices Make sure there's a space between ## and your text.

    ## This is heading 2 ✅
    ##This is heading 2 ❌