Markdown Cheatsheet

Edit

Markdown Cheatsheet

A quick reference for Markdown syntax supported by Notewall.


Text Formatting

Syntax Result
**bold** bold
*italic* italic
~~strike~~ ~~strike~~
`code` code

Headers

# H1
## H2
### H3
#### H4
[Link text](https://example.com)
![Alt text](image.jpg)

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!