For the complete documentation index, see llms.txt. This page is also available as Markdown.

Format Text

You can format most textual content using Markdown.

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.

You can create links which open Quick Search with the given text pre-filled:

[Search text]()

Essentially, any link without a URL will open search.

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

Markdown reference

Type
Or
… to Get

*Italic*

_Italic_

Italic

**Bold**

__Bold__

Bold

# Heading 1

Heading 1 =========

Heading 1

## Heading 2

Heading 2 ---------

Heading 2

[Link](https://jahed.dev)

[Link][1] ⋮ [1]: https://jahed.dev

> Blockquote

Blockquote

* List * List * List

- List - List - List

  • List

  • List

  • List

1. One 2. Two 3. Three

1) One 2) Two 3) Three

  1. One

  2. Two

  3. Three

Horizontal rule:

---

Horizontal rule: ***

Horizontal rule:


`Inline code` with backticks

Inline code with backticks

``` # code block print '3 backticks or' print 'indent 4 spaces' ```

····# code block ····print '3 backticks or' ····print 'indent 4 spaces'

Last updated