1
Fork 0
mkdocs-site/hooks/page-render.py
2023-09-10 14:44:04 +01:00

7 lines
339 B
Python

def on_page_markdown(markdown, page, config, files):
# HACK: Calculate what the `env` should probably look like. By default, `on_env` is called after `on_page_markdown`.
env = config.plugins.on_env(config.theme.get_env(), config=config, files=files)
template = env.from_string(markdown)
return template.render(page=page)