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

Formatting

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

{{ govukInsetText({ "text": "# This is a heading", "classes": "govuk-!-margin-top-0 govuk-!-margin-bottom-3"}) }}

To make bullet points, use asterisks:

{{ govukInsetText({ "html": "* point 1
* point 2
* point 3
", "classes": "govuk-!-margin-top-0 govuk-!-margin-bottom-3"}) }}

To insert a page break, use three asterisks:

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

***

Content on page 2
", "classes": "govuk-!-margin-top-0 govuk-!-margin-bottom-3"}) }}