Files
blog/posts/markdown-guide.md
Guus Waals 29502f6816 Initial commit
Initial commit

Add lua template
2025-10-24 19:24:07 +08:00

917 B

Markdown Guide

This blog uses CommonMark for rendering markdown content. Here's a quick guide to the syntax.

Headers

Use # for headers:

# H1
## H2
### H3

Emphasis

  • Italic with *asterisks*
  • Bold with **double asterisks**
  • Strikethrough with ~~tildes~~

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:

def hello():
    print("Hello, world!")

Tables

Column 1 Column 2 Column 3
Data 1 Data 2 Data 3
More Data Here

Task Lists

  • Completed task
  • Incomplete task
  • Another task

Horizontal Rule

Use three or more hyphens:


That's the basics of Markdown!