Markdown is an ubiquitous markup language (how ironic) that represents a proper subset of HTML. This entire site is authored in markdown.

Italicize text by surrounding it with _. Bold with **.

_very_ **Important!**

Headings are on their own lines, prefixed by # signs:

# Headings

The more signs, the lower the level. ## starts a second-level heading.

Start a list by prefix -, or a numbered list by numbers:

- bacon      1. health
- ham        2. connections
- eggs       3. hobbies

Quote sentences by prefix >:

> May the odds be ever in your favour. 

Link to a section title, a local file, or an URL:

[Google](https://google.ca)

Include an image:

![Image Caption](image.jpeg)

Typeset monospaced texts by surrounding it with backticks. For code blocks, indent the source code.

The function name `isEven` will be monospaced. 

Tables can be made, but should be avoided due to ugliness.