A notebook dropped into the posts/ folder is rendered natively by Quarto — no separate conversion step needed.
posts/
import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2*np.pi, 100) plt.plot(x, np.sin(x)) plt.title("Sine wave") plt.show()