---
title: "Formatting with Markdown"
slug: "formatting-with-markdown"
updated: 2025-07-02T17:35:10Z
published: 2025-07-02T17:35:10Z
canonical: "docs.onespan.com/formatting-with-markdown"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onespan.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Formatting with Markdown

To download the full code sample see our [Code Share](https://community.onespan.com/documentation/onespan-sign/codeshare/markdown-formatting-action) site.

Text within the Signer Experience can be using Markdown. Formatting is supported within the following area of the Signer Experience:

- Thank You Summary page
- Error pages
- Alerts

| Format | Description | Example | Output |
| --- | --- | --- | --- |
| Bold | To create bold text, wrap the text in double asterisks. To avoid creating bold text, place a backslash in front of each asterisk, and then escape it (total of two backslashes). | ```plaintext **bold text** ``` ```plaintext \\*\\*ignore bold text** ``` | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-1_300x29.webp) |
| Italics | To create italicized text, wrap the text in single asterisks. To avoid creating italic text, place a backslash in front of your text. | *italic text* ```plaintext \*ignore italic text* ``` | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-2_300x30.webp) |
| New Line | To create a line break, add a backslash, followed by an n (\n). | the first line\nthe second line | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/nsc-thank-you-summary-1_150x65.webp) |
| Spaces | To add more than one space in a line, use a non-breaking space. | &nbsp; |  |
| Indentation | To create an indentation, start a line with a ">". To end indentation and start a new paragraph, put newline character "\n" twice. | > \nparagraph with indentation line 2\n\na new paragraph | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-1-1_350x92.webp) |
| Headers | To create a header, start a line with a hash "#". The more "#'s" that you use, the smaller the header will be. The headers must be preceded by a new line "\n". | # header1\n ## header2\n ### header3\n | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-4_200x103.webp) |
| Unordered Lists | To create unordered lists, use either asterisks "*", plus "+", or hyphens "-" as list markers. | * item1\n - item2\n + item3\n | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/nsc-thank-you-summary-2_150x117.webp) |
| Ordered lists | To create ordered lists use numbers followed by period "." or right parenthesis ")". | 1. item1 2. item2 3. item3 or 1) item1 2) item2 3) item3 | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-3-1_200x227.webp) |
| Nested lists | To create nested lists start with a new line and use four (4) spaces in front of every sub-list item. | 1) item1\n&nbsp;&nbsp;&nbsp;&nbsp;a. sub-item11\n&nbsp;&nbsp;&nbsp;&nbsp;b. sub-item12\n&nbsp;&nbsp;&nbsp;&nbsp;c. sub-item13 2) item1\n&nbsp;&nbsp;&nbsp;&nbsp;a. sub-item21\n&nbsp;&nbsp;&nbsp;&nbsp;b. sub-item22\n&nbsp;&nbsp;&nbsp;&nbsp;c. sub-item23 3) item1\n&nbsp;&nbsp;&nbsp;&nbsp;a. sub-item31\n&nbsp;&nbsp;&nbsp;&nbsp;b. sub-item32\n&nbsp;&nbsp;&nbsp;&nbsp;c. sub-item33 | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/nsc-thank-you-summary-4_200x292.webp) |
|  | Some of the lists above have indentations in front. If this is the case you, use a new line character (\n) twice after the list. | 1) list1\n2) list2\n3) list3\n\na new paragraph | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/markdown-2-1_200x120.webp) |
| Links | To create a link, enclose your text with square brackets [], To create inline links, enclose the link URL with parenthesis (). To display only the link without any text, enclose the link URL with greater than and less than characters <>. Note that the URL must include either "http://" or "https://". | [Link text](Link URL) [click me](https://www.example.com) <Link URL> <https://www.example.com> | ![](https://cdn.document360.io/038f59a7-abd0-4c14-9de7-3434d28b49fd/Images/Documentation/nsc-thank-you-summary-5_300x85.webp) |
