title: Markdown Syntax description: How to use markdown in Wiki module. Learn tips and tricks of creating a wonderfully structured document using markdown in UNA wiki and how to beef it up with cool bits and bobs. iconUrl: sys_wiki_files/kh3msnav8xxsqqkwqq5geertzvrzkz25 platforms: [android, ios, web] tags: [reference] packageName: 5.1 Nova sourceCodeUrl: https://github.com/your/source
Markdown Syntax
Text, title, and styling in standard markdown
Titles
Best used for section headers.
## Titles
Subtitles
Best use to subsection headers.
### Subtitles
Each title and subtitle creates an anchor and also shows up on the table of contents on the right.
Text Formatting
We support most markdown formatting. Simply add **, _, or ~ around text to format it.
| Style | How to write it | Result |
|---|---|---|
| Bold | **bold** |
bold |
| Italic | _italic_ |
italic |
| Strikethrough | ~strikethrough~ |
You can combine these. For example, write **_bold and italic_** to get bold and italic text.
You need to use HTML to write superscript and subscript text. That is, add or around your text.
| Text Size | How to write it | Result |
|---|---|---|
| Superscript | superscript |
superscript |
| Subscript | subscript |
subscript |
Linking to Pages
You can add a link by wrapping text in [](). You would write [link to google](https://google.com) to link to google.
Links to pages in your docs need to be root-relative. Basically, you should include the entire folder path. For example, [link to text](/writing-content/text) links to the page "Text" in our components section.
Relative links like [link to text](../text) will open slower because we cannot optimize them as easily.
Blockquotes
Singleline
To create a blockquote, add a > in front of a paragraph.
Dorothy followed her through many of the beautiful rooms in her castle.
> Dorothy followed her through many of the beautiful rooms in her castle.
Multiline
Dorothy followed her through many of the beautiful rooms in her castle.
The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
Alerts
[!NOTE] Useful information that users should know, even when skimming content.
[!TIP] Helpful advice for doing things better or more easily.
[!IMPORTANT] Key information users need to know to achieve their goal.
[!WARNING] Urgent info that needs immediate user attention to avoid problems.
[!CAUTION] Advises about risks or negative outcomes of certain actions.
/ En12345