Hello World
This is my first blog post, testing various Markdown formatting elements
This post walks through every Markdown formatting feature supported by the blog — text styling, lists, code blocks, tables, images, and more. Use it as a reference when writing your own posts.
Welcome to my blog! This post demonstrates all supported formatting features.
Text Styling
This is a regular paragraph. You can use bold, italic, strikethrough, and inline code.
Here is a link example that you can click.
Lists
Unordered List
- First item
- Second item
- Nested item A
- Nested item B
- Third item
Ordered List
- Set up development environment
- Write code
- Deploy
Blockquote
The only way to do great work is to love what you do.
Code
Inline code: use npm run build to build the project.
Code blocks:
function greet(name) {
console.log(`Hello, ${name}!`);
return { message: "welcome" };
}
greet("World");
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n - 1) + fibonacci(n - 2)
print(fibonacci(10))
Tables
| Tool | Purpose | Language |
|---|---|---|
| Eleventy | Static site generator | JavaScript |
| Nunjucks | Template engine | JavaScript |
| Luxon | Date handling | JavaScript |
Images
Horizontal Rule
Content above
Content below
Task List
- Build blog framework
- Add bilingual support
- Write more posts
- Add comment system
Summary
These are all the Markdown elements this blog supports. Looking forward to writing more interesting content.