Skip to content

Guide

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

  1. Unordered list item 1
  2. Unordered list item 2
  3. Unordered list item 3

  4. Ordered list item 1

  5. Ordered list item 2
  6. Ordered list item 3

A block of code

# Some commented out code
def function(arg):
    if arg > 5:
        return True
    else:
        return False

Alt text


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

Sample web page

```

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.