mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 01:55:41 -04:00
31 lines
694 B
HTML
31 lines
694 B
HTML
{% from "components/components/inset-text/macro.njk" import usaInsetText %}
|
|
|
|
<h2 class="heading-medium">Formatting</h2>
|
|
<p class="usa-body">
|
|
To put a heading in your template, use a hash:
|
|
</p>
|
|
{{ usaInsetText({
|
|
"text": "# This is a heading",
|
|
"classes": ""})
|
|
}}
|
|
<p class="usa-body">
|
|
To make bullet points, use asterisks:
|
|
</p>
|
|
{{ usaInsetText({
|
|
"html": "* point 1<br/>
|
|
* point 2<br/>
|
|
* point 3<br/>",
|
|
"classes": ""})
|
|
}}
|
|
<p class="usa-body">
|
|
To insert a page break, use three asterisks:
|
|
</p>
|
|
{{ usaInsetText({
|
|
"html": "Content on page 1<br/>
|
|
<br/>
|
|
***<br/>
|
|
<br/>
|
|
Content on page 2<br/>",
|
|
"classes": ""})
|
|
}}
|