Skip to main content
  1. Resources/

Markdown

2 mins

If you’re unfamiliar with markdown, it’s easy to learn. The essentials below are everything you need to get started.

While you’re at it, you might as well check out Obsidian

Paragraph #

This is a paragraph. It can be as long as you'd like.

Add a line break by leaving a blank line.

Headers #

# H1 Header
## H2 Header
### H3 Header

Text Style #

**Bold** text is wrapped in double asterisks
_Italic_ text is wrapped in single asterisks
~~Strikethrough~~ text is wrapped in double tildes
`Inline code` is wrapped in backticks

Lists #

- This is a unordered list
- It uses dashes
- To indicate items

1. This is an ordered list
2. It uses numbers to indicate order
3. The numbers you type don't matter, they will be automatically numbered

Images #

![An online image](https://i.imgur.com/name-of-image.gif)

![An image stored in a folder](/my-image.png)
[External link](https://google.com)

[Internal link](/another/page)

Code Blocks #

Wrap your code in ``` and you will get a code block like below

SELECT * FROM amazing_db
WHERE col = 'Simple'
LIMIT 5;

Tables #

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| Row 1    | Row 1    | Row 1    |
| Row 2    | Row 2    | Row 2    |

Blockquotes #

> This is a blockquote
> 
>> It can span multiple lines and also be nested