In the documentation
Markdown utilities
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.
Lists
You can create ordered and unordered lists:
1. First item
2. Second item
3. Third item
Links
You can create links using the [text](url)
syntax:
[Google](https://www.google.com)
Images
You can add images using the 
syntax:

Code Blocks
You can add code blocks using the ``` syntax:
print("Hello, World!")
Note
See more about code blocks
Tables
You can create tables using the |
syntax:
| Header 1 | Header 2 | Header 3 |
| -------- | -------- | -------- |
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
Read More
You can add a read more link using the :read-more
syntax:
dd