Welcome to my blog! This site is built with Astro and hosted on GitHub Pages.
Features
Here’s a quick tour of what this blog supports.
Code Blocks
Syntax highlighting via Shiki with dual light/dark themes:
function fibonacci(n: number): number {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10)); // 55
Inline Code
Use backticks for inline code like this const x = 42;.
Math
Inline math: and .
Display math:
Images
Place images in your post directory and reference them:

Links
- Internal links work with file-based routing
- External links open normally
Lists
- First item
- Second item
- Third item
- Unordered
- List
- Items
Blockquotes
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore.
That’s it! Happy reading.