Markdown Syntax Guide

Heading Level 1

Heading Level 2

Heading Level 3

Heading Level 4

Heading Level 5
Heading Level 6

Text Formatting

Bold Text using ** or Bold Text using __.

Italic Text using * or Italic Text using _.

Bold and Italic using *** or Bold and Italic using ___.

Strikethrough using ~~.

Inline Code using backticks.

Link to Google

Lists

Unordered List

  • Item 1
  • Item 2
    • Sub-item 2.1
    • Sub-item 2.2
      • Sub-sub-item 2.2.1
  • Item 3

Ordered List

  1. First Item
  2. Second Item
    1. Sub-item 2.1
    2. Sub-item 2.2
  3. Third Item

Task List

  • Completed task
  • Incomplete task
  • Another task

Blockquotes

This is a blockquote.

It can span multiple lines.

And can be nested.

Code Blocks

javascript
1// JavaScript Example
2function hello() {
3  console.log("Hello, World!");
4}
5hello();
python
1# Python Example
2def hello():
3    print("Hello, World!")
4
5if __name__ == "__main__":
6    hello()
css
1/* CSS Example */
2body {
3  background-color: #f0f0f0;
4  color: #333;
5}

Tables

Header 1Header 2Header 3
Left AlignedCenter AlignedRight Aligned
Row 1 Col 1Row 1 Col 2Row 1 Col 3
Row 2 Col 1Row 2 Col 2Row 2 Col 3

Horizontal Rule


Images

Placeholder Image

HTML Elements

This is a raw HTML div with inline styles.
Click to expand Hidden content inside details tag.

Auto Links

https://www.example.com

< Back to blog list

<BLOG>

</BLOG>