Module

markdown

Markdown rendering for chirp via patitas.

Parse and render Markdown to HTML in templates, routes, and SSE streams. Thin wrapper around patitas with chirp-specific ergonomics.

Basic usage::

from chirp.markdown import register_markdown_filter

app = App()
register_markdown_filter(app)

Then in templates::

{{ content | markdown }}

Requirespatitas(includes rosettes for syntax highlighting)::

pip install chirp[markdown]