Files
personotes/notes/documentation/guides/markdown-syntax.md

42 lines
434 B
Markdown

---
title: "Markdown Syntax Guide"
date: "10-11-2025"
last_modified: "10-11-2025:19:21"
tags: ["documentation", "guide", "markdown"]
---
# Markdown Syntax
## Headers
```markdown
# H1
## H2
### H3
```
## Emphasis
**bold** and *italic*
## Lists
- Item 1
- Item 2
- Nested
## Code
Inline `code` and blocks:
```python
def hello():
print('Hello')
```
## Tables
| Column | Column |
|--------|--------|
| Data | Data |