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

  1. Set up development environment
  2. Write code
  3. 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

A calm lake surrounded by mountains

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.