Tutorial
Heading 1: This is a Heading
Heading 2: This is a Subheading
Heading 3: This is a Sub-subheading
Bold text: This text is bold Italic text: This text is italicized ~~Strikethrough text~~: This text is struck through
- Unordered list item 1
- Unordered list item 2
-
Unordered list item 3
-
Ordered list item 1
- Ordered list item 2
- Ordered list item 3
A block of code
# Some commented out code
def function(arg):
if arg > 5:
return True
else:
return False

This is an example of a horizontal rule
Code Block with Syntax Highlighting:
// Some JavaScript code
let name = "John";
function greet() {
return 'Hello, ' + name;
}
OR
````html
```
Table:
| Syntax | Detail |
|---|---|
| Headers go | Here... |
| Here... | ...and here. |
| Subhead | With this cool table! |
Task List:
- [x] This is a checked off item
- [ ] This is an unchecked item
- [ ] Yet another unchecked item, with a bit more detail about what needs to be done.