The footer is displayed at the bottom-left of the slide.
Set footer text in the frontmatter:
--- footer: "Footer Text" ---
Or per slide with directive:
<!-- _footer: "Custom Footer" -->
--footer-margin-x
var(--outer-margin-x)
--footer-margin-y
var(--outer-margin-y)
--footer-font-size
var(--font-size-xs)
--footer-color-text
var(--color-grey-medium)
Use empty string to hide footer on specific slides:
<!-- _footer: "" -->
This slide has no footer.
Override font size and color:
--- style: | :root { --footer-font-size: 1em; --footer-color-text: #e74c3c; } ---
The footer on this slide is larger and red.