Markdown Input

Markdown Preview

Sample Markdown Guide

Headings

Use # for headings, with additional # for subheadings:

# H1 Heading ## H2 Heading ### H3 Heading #### H4 Heading

Lists

Unordered List

- Item 1 - Sub-item 1.1 - Item 2

Ordered List

1. Step 1 2. Step 2 1. Sub-step 2.1

Links

[Google](https://www.google.com)

Images

![Alt Text](https://via.placeholder.com/150)

Code Blocks

Inline code:

`console.log('Hello, World!');`

Block code:

```javascript function greet(name) { return `Hello, ${name}!`; }

---

## Blockquote

```markdown
> This is a blockquote.

Tables

| Column 1 | Column 2 | Column 3 | |----------|----------|----------| | Value 1 | Value 2 | Value 3 | | Value A | Value B | Value C |

Task Lists

- [x] Task 1 - [ ] Task 2 - [ ] Task 3

Emphasis

  • Bold:
**Bold**
  • Italic:
*Italic*
  • Strikethrough:
~~Strikethrough~~

Horizontal Line

---

Emoji

🎉 ✨ 🚀

Write as :rocket: for 🚀.