{% from "components/components/inset-text/macro.njk" import usaInsetText %}

Formatting

To put a heading in your template, use a hash:

{{ usaInsetText({ "text": "# This is a heading", "classes": ""}) }}

To make bullet points, use asterisks:

{{ usaInsetText({ "html": "* point 1
* point 2
* point 3
", "classes": ""}) }}

To insert a page break, use three asterisks:

{{ usaInsetText({ "html": "Content on page 1

***

Content on page 2
", "classes": ""}) }}