Files
notifications-admin/app/templates/partials/templates/guidance-formatting-letters.html
2023-08-25 10:40:56 -04:00

31 lines
708 B
HTML

{% from "components/components/inset-text/macro.njk" import govukInsetText %}
<h2 class="heading-medium">Formatting</h2>
<p class="govuk-body">
To put a heading in your template, use a hash:
</p>
{{ govukInsetText({
"text": "# This is a heading",
"classes": ""})
}}
<p class="govuk-body">
To make bullet points, use asterisks:
</p>
{{ govukInsetText({
"html": "* point 1<br/>
* point 2<br/>
* point 3<br/>",
"classes": ""})
}}
<p class="govuk-body">
To insert a page break, use three asterisks:
</p>
{{ govukInsetText({
"html": "Content on page 1<br/>
<br/>
***<br/>
<br/>
Content on page 2<br/>",
"classes": ""})
}}