> For the complete documentation index, see [llms.txt](https://docs.frontiernav.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.frontiernav.net/editing-data/format-text.md).

# Format Text

You can format most textual content using [Markdown](https://commonmark.org/help/).

## Embed videos

You can embed videos from popular services like YouTube:

```
[](https://www.youtube.com/watch?v=oHg5SJYRHA0)
```

Essentially, any link without text will be embedded.

Make sure the video itself can be embedded and isn't age restricted. Otherwise it's better off as a regular link.

## Search links

You can create links which open [Quick Search](/navigation/universal-search.md) with the given text pre-filled:

```
[Search text]()
```

Essentially, any link without a URL will open search.&#x20;

This is useful when you want to link to entities and types without needing to worry about specific IDs.

## Markdown reference

<table><thead><tr><th>Type</th><th>Or</th><th>… to Get</th></tr></thead><tbody><tr><td>*Italic*</td><td>_Italic_</td><td><em>Italic</em></td></tr><tr><td>**Bold**</td><td>__Bold__</td><td><strong>Bold</strong></td></tr><tr><td># Heading 1</td><td>Heading 1<br>=========</td><td><h2>Heading 1</h2></td></tr><tr><td>## Heading 2</td><td>Heading 2<br>---------</td><td><h3>Heading 2</h3></td></tr><tr><td>[Link](https://jahed.dev)</td><td>[Link][1]<br>⋮<br>[1]: https://jahed.dev</td><td><a href="https://jahed.dev">Link</a></td></tr><tr><td>> Blockquote</td><td> </td><td>Blockquote</td></tr><tr><td>* List<br>* List<br>* List</td><td>- List<br>- List<br>- List<br></td><td><ul><li>List</li><li>List</li><li>List</li></ul></td></tr><tr><td>1. One<br>2. Two<br>3. Three</td><td>1) One<br>2) Two<br>3) Three</td><td><ol><li>One</li><li>Two</li><li>Three</li></ol></td></tr><tr><td><p>Horizontal rule:</p><p><br>---</p></td><td>Horizontal rule:<br><br>***</td><td><p>Horizontal rule:</p><hr></td></tr><tr><td>`Inline code` with backticks</td><td> </td><td><code>Inline code</code> with backticks</td></tr><tr><td>```<br># code block<br>print '3 backticks or'<br>print 'indent 4 spaces'<br>```</td><td>····# code block<br>····print '3 backticks or'<br>····print 'indent 4 spaces'</td><td><pre><code># code block
print '3 backticks or'
print 'indent 4 spaces'
</code></pre></td></tr></tbody></table>
