Welcome to my new blog! This is my very first post, created using Hugo and the awesome Terminal theme. Here, I’ll be sharing my thoughts on technology, software development, and more.

Writing in Markdown#

Writing content is straightforward with Markdown. You can easily structure your text with headings, lists, and other formatting.

  • Bold text is created with **double asterisks**.
  • Italic text is created with *single asterisks*.
  • You can create links to other sites like this.

Code Highlighting#

The Terminal theme includes beautiful syntax highlighting for code blocks. All you need to do is specify the language after the backticks.

Here is an example of a JavaScript code block:

function greet(name) {
  console.log(`Hello, ${name}! Welcome to the blog.`);
}

greet("World");

Using Shortcodes#

Hugo’s shortcodes allow you to embed more complex content easily. The Terminal theme comes with a useful image shortcode.

Here is how you can embed an image and center it:

Hello Friend

That’s it for now. Stay tuned for more content!