Skip to main content
  1. Posts/

Welcome to My Blog

·1 min

Welcome to my new blog! This post demonstrates the various features available.

Syntax Highlighting #

Code blocks have syntax highlighting with support for line marking. Use hl_lines to highlight specific lines:

1
2
3
4
5
6
7
package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}

Here’s some Python:

1
2
3
4
5
6
def greet(name):
    """Greet someone by name."""
    message = f"Hello, {name}!"
    return message

print(greet("World"))

Callouts #

The blog supports styled callouts for different types of information:

Images #

Images are automatically optimized and made responsive. Just use the standard figure shortcode:

{{< figure src="image.jpg" alt="Description" caption="Optional caption" >}}

Use the search icon in the navigation to find content across the site. The search is powered by JavaScript and works entirely client-side.

What’s Next #

Stay tuned for more posts on software engineering, programming tips, and tech explorations!