Hello World — My New Blog
Table of Contents
Welcome to my new blog! I’ve migrated from Next.js to Hugo for simplicity and zero hosting costs. Here’s a quick tour of what this blog can do.
Code Highlighting #
Hugo has built-in syntax highlighting via Chroma:
def hello():
print("Hello from my new blog!")
if __name__ == "__main__":
hello()
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
greet("world");
Embedding YouTube Videos #
You can embed YouTube videos using Hugo’s built-in shortcode:
Images #
You can include images by placing them in the same directory as this post and referencing them:

What’s Next #
I’ll be writing about software development, projects I’m building, and things I’m learning.
Stay tuned! 🚀