Markdown Cheatsheet
A quick reference for Markdown syntax supported by Notewall.
Text Formatting
| Syntax |
Result |
**bold** |
bold |
*italic* |
italic |
~~strike~~ |
~~strike~~ |
`code` |
code |
# H1
## H2
### H3
#### H4
Links & Images
[Link text](https://example.com)

Lists
- Unordered item
- Another item
- Nested item
1. Ordered item
2. Another item
Code Blocks
Use triple backticks with language name:
```python
print("Hello!")
```
Blockquotes
> This is a quote
> It can span multiple lines
Horizontal Rule
Tables
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
Tip: Click Edit to see the raw Markdown of this cheatsheet!
# Markdown Cheatsheet
A quick reference for Markdown syntax supported by Notewall.
---
## Text Formatting
| Syntax | Result |
|--------|--------|
| `**bold**` | **bold** |
| `*italic*` | *italic* |
| `~~strike~~` | ~~strike~~ |
| `` `code` `` | `code` |
## Headers
```markdown
# H1
## H2
### H3
#### H4
```
## Links & Images
```markdown
[Link text](https://example.com)

```
## Lists
```markdown
- Unordered item
- Another item
- Nested item
1. Ordered item
2. Another item
```
## Code Blocks
Use triple backticks with language name:
~~~markdown
```python
print("Hello!")
```
~~~
## Blockquotes
```markdown
> This is a quote
> It can span multiple lines
```
## Horizontal Rule
```markdown
---
```
## Tables
```markdown
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
```
---
*Tip: Click Edit to see the raw Markdown of this cheatsheet!*