docs: document supported frontmatter keys #120
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Document which keys are useful for the Markdown frontmatter.
Currently in use:
title(used in default template<title>tag)lang(used in<html>tag)description(used in default template metadata)author(used in default template metadata)See:
<html{% if lang %} lang="{{ lang|escape }}"{% endif %}><head><title>{{ title|escape }}</title><link rel="stylesheet" type="text/css" href="/static/default.css">{% if user_styles %}<link rel="stylesheet" type="text/css" href="{{ user_styles }}">{% endif %}<meta charset="utf-8" />{% if author %}<meta name="author" content="{{ author|escape }}">{% endif %}{% if description %}<meta name="description" content="{{ description|escape }}">{% endif %}