forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
title: 'Markdown Style Guide' pubDate: '2025-06-28'#
This theme does not define more levels of headlines. If needed, you can define them in src/styles/post.css.
Paragraph#
Here's a practical example of a paragraph in Markdown. This text demonstrates how content flows naturally in a blog post.
You can use various formatting options like bold, italic, strikethrough, and code within your paragraphs.
Blockquotes#
Don't communicate by sharing memory, share memory by communicating.
— Rob Pike1
Ordered List#
- First item
- Second item
- Third item
Unordered List#
- Item
- Subitem
- Subitem
Task List#
- First item
- Second item
- Third item
Image#
To hide the caption, start it with an underscore _ or leave the alt text empty.

Tables#
| Style | Weight | Other |
|---|---|---|
| Normal | Regular | Text |
| Italic | Bold | Code |
Code Blocks#
// Button.jsx
const Button = ({ text, onClick }) => {
const [count, setCount] = useState(0)
const handleClick = () => {
setCount(count + 1)
onClick?.()
}
return (
<button className="btn" onClick={handleClick}>
{text} ({count})
</button>
)
}
Other Elements — sub, sup, abbr, kbd, mark#
H2O
Xn + Yn = Zn
GIF is a bitmap image format.
Press CTRL + ALT + Delete to end the session.
Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.