Crates a blockqoute.

#markdown
> Use blockqoute on this text.
Output:

Use blockqoute on this text.

copy

Make text bolder by wrapping it with the '**' characters from each side.

#markdown
**Bold text**
Output:

Bold text

copy

Style for a checkbox.

#markdown
- [ ] Incomplete task
- [x] Complete task
Output:
  • Incomplete task
  • Complete task
copy

Use emoji in your Markdown files! smile, heart eyes, wink, expressionless, scream, rage, pensive, sob, joy, mask, heart, fire, poop, thumbs up, thumbs down, raised hands, point up.

#markdown
:smile: :heart_eyes: :wink: :expressionless: :scream: :rage: :pensive: :sob: :joy: :mask:
:heart: :fire: :poop:
:+1: :-1: :raised_hands: :point_up:
copy

Use a single '#' character followed by a space and your title to style the header.

#markdown#heading
# Title heading size 1
Output:

Title heading size 1

copy

Use '##' characters followed by a space and your title to style the header.

#markdown#heading
## Title heading size 2
Output:

Title heading size 2

copy

Use '###' characters followed by a space and your title to style the header.

#markdown#heading
### Title heading size 3
Output:

Title heading size 3

copy

Use '####' characters followed by a space and your title to style the header.

#markdown#heading
#### Title heading size 4
Output:

Title heading size 4

copy

Use '#####' characters followed by a space and your title to style the header.

#markdown#heading
##### Title heading size 5
Output:
Title heading size 5
copy

Add image. First argument is the alt text. For the second use the image url.

#markdown
![Image alt text](/favicon.png)
Output:

Image alt text

copy

Use "`" characters to set inline code element.

#markdown
You can put `inline code` like so.
Output:

You can put inline code like so.

copy

Make text italicized by wrapping it with the '*' character from each side.

#markdown
*Italicized text*
Output:

Italicized text

copy

Make text striked by wrapping it with the '~~' characters from each side.

#markdown
~~Striked text~~
Output:

Striked text

copy

Add link to a text.

#markdown
This text has a link to the [HTML anchor tag](https://shortcode.dev/html-cheatsheet?code=anchor "HTML anchor").
Output:

This text has a link to the HTML anchor tag.

copy

Create an ordered list of items.

#markdown#list
1. First ordered item
2. Second item
3. Third
Output:
  1. First ordered item
  2. Second item
  3. Third
copy

Crates a table.

#markdown
Column header one | Column header two
------------ | -------------
Content cell one | Content cell two
Next row column one | Column two
Output:
Column header one Column header two
Content cell one Content cell two
Next row column one Column two
copy

Create an unordered list of items. You can use a '-' character, '+' or a '*'.

#markdown#list
- First unordered item
- Second item
- Third
Output:
  • First unordered item
  • Second item
  • Third
copy