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

Formatting

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

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

To make bullet points, use asterisks:

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

To add inset text, use a caret:

{{ usaInsetText({"text": "^ You must tell us if your circumstances change", "classes": ""})}}

To add a horizontal line, use three dashes:

{{ usaInsetText({ "html": '

First paragraph

---

Second paragraph

', "classes": ""}) }}