Table of contents



Heading

What you type
1
2
3
4
5
6
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
What it looks like

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6


Text formatting

What you type What it looks like
*Italics* Italics
**Bold** Bold
~~Strikeout~~ Strikeout
==Mark== Mark

You can also combine these:
What you type What it looks like
***Bold Italics*** Bold Italics
~~**Bold Strikeout**~~ Bold Strikeout
==*Italic* and **Bold** Mark== Italic and Bold Mark


What you type What it looks like
https://rentry.co/ https://rentry.co/
[Rentry](https://rentry.co/) Rentry
[Rentry](https://rentry.co/ "Link description") Rentry
[This content](#Urls-and-Hyperlinks) This content

1
2
3
4
5
6
7
8
[hyperlink1][hyper]
[hyperlink2][hyper]

[This content][url]
[This content][url]

[hyper]: https://rentry.co/
[url]: #urls-and-hyperlinks
What it looks like

hyperlink1
hyperlink2

This content
This content


Or leave the # empty to create a comment
Some **Bold** text with a [hyperlink](https://rentry.co/).
[This is a comment]: #
What it looks like

Some Bold text with a hyperlink.



Images

What you type What it looks like
![](https://i.imgur.com/PYV4crq.png)
![Description](https://i.imgur.com/PYV4crq.png) (hover over the image) Description
[![Description](https://i.imgur.com/PYV4crq.png)](https://rentry.co/) (you can also combine it with a hyperlink) Description

Imgur has a special feature that allows you to change the size of an image add a letter to the end of the name
What you type What it looks like
![](https://i.imgur.com/ppUWLYgs.png) s Small Square (90×90)
![](https://i.imgur.com/ppUWLYgb.png) b Big Square (160x160)
![](https://i.imgur.com/ppUWLYgt.png) t Small Thumbnail (160x160)
![](https://i.imgur.com/ppUWLYgm.png) m Medium Thumbnail (320×320)
![](https://i.imgur.com/ppUWLYgl.png) l Large Thumbnail (640×640)
![](https://i.imgur.com/ppUWLYgh.png) h Huge Thumbnail (1024×1024)
![](https://i.imgur.com/ppUWLYg.png) Normal Image
Kepp in mind you can only scale down, not up


Align Text

What you type What it looks like
-> Centered Text <- Centered Text
-> Right-aligned -> Right-aligned

Also works for images and Headers
-> ![Centered Image](https://i.imgur.com/PYV4crq.png) <-
### -> Right Header 3 ->
What it looks like

Centered Image

Right Header 3



Lists

Ordered List, what you type
1
2
3
4
5
1. Item 1
1. Item 2
    1. Item 2.1
    1. Item 2.2
2. Item 3

(it automatically numbers them the right way)

What it looks like
  1. Item 1
  2. Item 2
    1. Item 2.1
    2. Item 2.2
  3. Item 3

Unordered List, what you type
1
2
3
4
5
- Item 1
- Item 2
    - Item 2.1
    - Item 2.2
- Item 3
What it looks like
  • Item 1
  • Item 2
    • Item 2.1
    • Item 2.2
  • Item 3

Checklist, what you type
1
2
3
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
What it looks like
  • Write the press release
  • Update the website
  • Contact the media


Tables

What you type
1
2
3
4
Column 1 | Column 2
--- | ---
Item 1 | Price 1
Item 2 | Price 2
What it looks like
Column 1 Column 2
Item 1 Price 1
Item 2 Price 2

You can align each column to the right with --: and center with:--:
1
2
3
Column 1 | Column 2 | Column 3
--- | :---: | ---:
Item 1 | Price 1 | Amount
What it looks like
Column 1 Column 2 Column 3
Item 1 Price 1 Amount

You can also use text aligns and other markdowns
What you type What it looks like
-> Centered <- Centered
-> Right aligned -> Right aligned
*Italic* Italic
**Bold** Bold
[Rentry](https://rentry.co/) Rentry
Line 1 -><- Line 2 -><- Line 3 (little trick that i found out to write multiple lines in one row) Line 1 Line 2 Line 3
Line 1 ->Line 2<- ->Line 3-> Line 1 Line 2 Line 3


Callouts

What you type
!!! info Title
    Description

!!! note Title
    Description

!!! warning Title
    Description

!!! danger Title
    Description
What it looks like

Title

Description

Title

Description

Title

Description

Title

Description


You can also use text formatting and other markdown and skip the title or text
1
2
3
4
5
6
7
8
9
!!! info *Italic Title* with [hyperlink](#you-can-also-use-text-formatting-and-other-markdown)
    **Bold Description** with Cheklist
    - [ ] Check 1
    - [x] Check 2

!!! warning Only warning title

!!! note
    Only note text
What it looks like

Italic Title with hyperlink

Bold Description with Cheklist

  • Check 1
  • Check 2

Only warning title

Only note text


You can also use emojis e.g. from emojipedia and images
1
2
3
4
5
6
7
8
!!! info
    📝 **Note:** Sunrises are beautiful.

!!! warning
    :warning: **Warning:** Do not push the big red button.

!!! danger
    ![](https://simp1.jpg.church/images/youtube.png) Follow me on Youtube
What it looks like

📝 Note: Sunrises are beautiful.

:warning: Warning: Do not push the big red button.

Follow me on Youtube



Edit Report
Pub: 04 Jan 2023 16:05 UTC
Edit: 23 Feb 2023 19:51 UTC
Views: 1063