markdowndocumentationwritinggithub

Markdown Syntax Guide: From Basic to Advanced

Master Markdown formatting from headings and lists to tables, code blocks, and extended syntax.

March 1, 2024ยท8 min read

Basic Markdown

Headings

# H1
## H2
### H3

Text Formatting

**Bold text**
*Italic text*
~~Strikethrough~~
`code`

Links and Images

[Link text](https://example.com)
![Alt text](image.jpg)

Lists

- Unordered item
- Another item
  - Nested item

1. Ordered item
2. Second item

Tables

| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |

Code Blocks

```javascript
const hello = "world"
```

Preview your Markdown with our Markdown Preview tool.