+
+Markdown syntax is pretty easy. You can add **bold**, _italic_ and _underline_ text. You can use ~~strikethrough~~. You can use `inline code blocks`.
+
+```python
+print("We can use code blocks like this.")
+```
+
+You can add [links to other websites](https://pycord.dev). You can add images by adding ![alt text](@site/static/img/favicon.ico).
+
+- You can create
+- unordered lists like this
+
+1. Or ordered lists
+
+2. Like this
+
+3. If you want markdown to automatically detect what number you are on, you can use `1.`
+
+4. Like this
+
+ # Headers
+
+ ## Go
+
+ ### Like
+
+ #### This
+
+You can even use HTML in Markdown.
+
+
This text is monospaced
+Use
to add a break line.
+
+> We can use blockquotes too.
+
+2 ways to create tables:
+
+
+
+ Header |
+ Header |
+
+
+ Cell |
+ Cell |
+
+
+
+| Header | Header |
+| ------ | ------ |
+| Cell | Cell |
+
+Here's a line for us to start with.
+
+This line is separated from the one above by two new lines, so it will be a _separate paragraph_.
+
+This line is also a separate paragraph, but...
+This line is only separated by a single newline, so it's a separate line in the _same paragraph_.
+
+We can use emojis too! :joy:
+
+- [x] We can have task lists too
+- [ ] This is a task
+- [ ] That's not done yet
+
+
+