Markdown 101: Cheat Sheet

By FilthyHippie | Category: 101 Series | Tags: markdown, petzu | Visibility: public

This guide shows how to format your tutorials using Markdown. You can use the buttons above the editor or type it manually!


πŸ”€ Text Formatting

Bold
**bold** or __bold__

Italic
*italic* or _italic_

Bold + Italic
***bold italic***

Inline code
`code`

Code block:

```
your code here
```

Headings:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Text Indent

>

Centering

@center
![](/petzu/uploads/pix.png) or text
@end

Font Color

Want to color your text? 🎨

  1. Highlight the text
  2. Click the β€œA” color button
  3. Pick a color and click β€œSet Color”

This inserts:

<font color="#ff69b4">your text</font>

πŸ“Œ Lists

Bullet list:

- Item 1
- Item 2

Numbered list:

1. First
2. Second

Task list:

- [ ] Unchecked task
- [x] Completed task

Link:

[Petz](https://petzmainstreet.com)

Image:

![](uploads/yourfile.png)

Upload images in the attachments field to use this!


πŸ“Ž Attachments

To include a file you uploaded:

[Download filename](uploads/yourfile.zip)

🧠 Extras

Footnotes: This is a fact.1

This is a fact.[^1]

[^1]: Here is the footnote explanation.

Tables:

Column A Column B
One Two
| Column A | Column B |
|----------|----------|
| One      | Two      |
Description list:
Term
Definition of the term.
Term  
: Definition of the term.

πŸ“Ί Video

@video(https://www.youtube.com/watch?v=BYTxPFj44uo)

  1. Here is the footnote explanation. β†©

Comments

billywix

wow kewl

FilthyHippie

wow thx

Log in to post a comment.