Initial commit

Initial commit

Add lua template
This commit is contained in:
2024-10-01 19:24:07 +08:00
commit 29502f6816
19 changed files with 2102 additions and 0 deletions

62
posts/markdown-guide.md Normal file
View 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: `![Alt text](image.jpg)`
## 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!