I created a blog in Django!

2025-09-07 · by toon

This blog will be a personal notebook to keep track of all my projects.

It supports markdown

A Quick Guide to Markdown Syntax

Markdown is a lightweight markup language that makes it easy to format text without complicated tools. It’s widely used for documentation, notes, blogs, and even GitHub readmes.\ Here’s a summary of the most useful syntax:


Headings

Use # to create headings. The number of # symbols defines the level.

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Emphasis

*Italic* or _Italic_  
**Bold** or __Bold__  
***Bold and Italic***

Lists

Unordered list:

- Item 1
- Item 2
  - Nested item

Ordered list:

1. First
2. Second
3. Third

[OpenAI](https://openai.com)  

![Alt text](https://via.placeholder.com/150)

Code

Inline code:

Here is some `inline code`.

Code block: ```python def hello(): print(“Hello, world!”) ```


Blockquotes

> This is a blockquote.
>> Nested blockquote

Horizontal Rule

---

Tables

| Column 1 | Column 2 |
|----------|----------|
| Value A  | Value B  |
| Value C  | Value D  |

Task Lists

- [x] Write blogpost
- [ ] Publish it
- [ ] Celebrate 🎉

Conclusion

Markdown keeps formatting simple and readable, whether raw or rendered. Once you master the basics, you can focus on writing instead of fiddling with formatting.