Initial commit
Initial commit Add lua template
This commit is contained in:
62
posts/markdown-guide.md
Normal file
62
posts/markdown-guide.md
Normal file
@@ -0,0 +1,62 @@
|
||||
# Markdown Guide
|
||||
|
||||
This blog uses CommonMark for rendering markdown content. Here's a quick guide to the syntax.
|
||||
|
||||
## Headers
|
||||
|
||||
Use `#` for headers:
|
||||
|
||||
```markdown
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
```
|
||||
|
||||
## Emphasis
|
||||
|
||||
- *Italic* with `*asterisks*`
|
||||
- **Bold** with `**double asterisks**`
|
||||
- ~~Strikethrough~~ with `~~tildes~~`
|
||||
|
||||
## Links and Images
|
||||
|
||||
Links: `[Link text](https://example.com)`
|
||||
|
||||
Images: ``
|
||||
|
||||
## Blockquotes
|
||||
|
||||
> This is a blockquote.
|
||||
> It can span multiple lines.
|
||||
|
||||
## Code
|
||||
|
||||
Inline `code` with backticks.
|
||||
|
||||
Code blocks with triple backticks:
|
||||
|
||||
```python
|
||||
def hello():
|
||||
print("Hello, world!")
|
||||
```
|
||||
|
||||
## Tables
|
||||
|
||||
| Column 1 | Column 2 | Column 3 |
|
||||
|----------|----------|----------|
|
||||
| Data 1 | Data 2 | Data 3 |
|
||||
| More | Data | Here |
|
||||
|
||||
## Task Lists
|
||||
|
||||
- [x] Completed task
|
||||
- [ ] Incomplete task
|
||||
- [ ] Another task
|
||||
|
||||
## Horizontal Rule
|
||||
|
||||
Use three or more hyphens:
|
||||
|
||||
---
|
||||
|
||||
That's the basics of Markdown!
|
||||
Reference in New Issue
Block a user