Quarto Test Post

This is a test post written in .qmd to verify that Quarto successfully renders to Hugo-compatible Markdown.

Quarto Features

Here is a simple calculation using Python (if configured) or just a static Quarto feature like a callout:

Note

Quarto is now integrated with your Hugo site!

#| echo: true
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 10, 100)
y = np.sin(x)

plt.plot(x, y)
plt.show()

The above code block is a demonstration of Quarto’s capabilities.