# Basic Markdown Syntax 

By [myz](https://paragraph.com/@megaethmaxi) · 2022-02-02

---

Markdown Cheatsheet
===================

[https://www.markdownguide.org/cheat-sheet/](https://www.markdownguide.org/cheat-sheet/)

[The-Ultimate-Markdown-Cheat-Sheet](https://github.com/lifeparticle/Markdown-Cheatsheet)

1\. Headings:
-------------

    # Heading 1
    ## Heading 2
    ### Heading 3
    

2\. Text Styles:
----------------

*   **Bold:** `**Bold**`
    
*   _Italic:_ `*italic*`
    
*   Blockquotes: `> Blockquotes`
    

    > Blockquotes
    > > Nested Blockquotes
    

> Blockquote
> 
> > Nested Blockquotes

*   Strike-through: `~~Strike-through~~`
    
*   code: `` `code` ``
    
*   Fenced Code Block: \`\`\`
    

    shift+enter to exit
    

*   List:
    

1.  111
    
2.  222
    
3.  333
    
    1.  11
        
    2.  22
        

*   `- xxx`
    
*   `- xxx`
    

3\. Table:
----------

    | Default | Left align | Center align | Right align |
    | - | :- | :-: | -: |
    | 9999999999 | 9999999999 | 9999999999 | 9999999999 |
    | 999999999 | 999999999 | 999999999 | 999999999 |
    | 99999999 | 99999999 | 99999999 | 99999999 |
    | 9999999 | 9999999 | 9999999 | 9999999 |

---

*Originally published on [myz](https://paragraph.com/@megaethmaxi/basic-markdown-syntax)*
