Markdown Syntax

less than 1 minute read

Markdown Syntax

0. Line Breaks

  • end a line with two or more spaces, and then type return.

1. Heading

# : Heading level 1
##: Heading level 2
###: Heading level 3

2. Bold

**text**
text

3. Italic

*text*
text

4. Blockquotes

>blockquote
>>blockquote

blockquote

blockquote

5. Lists

  • Ordered List 1. 2. 3. 4. …
  • Unordered List - or * or + Don’t mix and match delimiters in the same list

6. Code

  • `code` code

  • ``code`` code

  • ```c (or other code types) #include \`\`\`
      #include <stdio.h>
    
  • ``code `backtick` code `` code `backtick` code

7. Horizontal Line

  • --- : Horizontal line

  • Without blank lines, this would be heading
  • With Title [naver](https://www.naver.com) naver

  • Without Title <https://www.naver.com> https://www.naver.com
  • Reference-style I’m from [South Korea][label]

    [label]: <link>

    • Don’t forget return between document and label link.
    • Don’t forget space after colon.

    I’m from South Korea.

9. Images

  • ![alt-text](path-or-URL-to-image-asset “optional-title”)

lion

Updated: