{% macro guidanceHelp(includeLinks=true, includeHeadings=true, includeLists=true) %} {% if includeLinks %}

Links and URLs

To add a link, use square brackets [ ] around the link text, and round brackets ( ) around the full URL. Make sure there are no spaces between the two sets of brackets. For example:

[Link text](https://www.gov.uk/link-text-url)
{% endif %} {% if includeHeadings %}

Headings

Do not use headings to style your text in bold. This can cause issues for people using assistive technology.

Second-level headings

To add a second-level heading (H2), use 2 hashtags followed by a space. For example:

## This is a second-level heading
{% endif %} {% if includeLists %}

Bulleted lists

To add bullet points, start each item with * (asterisk) or - (dash). Make sure there is one space after the asterisk or dash.

Leave one empty line before adding the first bullet point and another after the last bullet point. For example:

* First bullet point
* Second bullet point
* Third bullet point

Numbered lists

Use numbers for each list item, followed by a full stop. Make sure there is one space after the full stop.

Leave one empty line before adding the first list item and another after the last list item. For example:

1. First item
2. Second item
3. Third item
{% endif %} {% endmacro %}