How Markdown works#
Emphasis, links, and images#
Text can be written in bold or italics and also made into links.

Quotes and Lists#
This is a quote.
- This is a list.
-
This is an indented list.
-
This is a numbered list.
- This is an indented numbered list.
Tables#
| Column 1 | Column 2 |
|---|---|
| This is how | a table works |
Code blocks#
Here is an example code block:
print("hello world")
You can also put code in text as follows: print ("hello world").