{% extends "default.html" %} {% block title %} {{'SITE_NAME' | app_config}} - Formatting {% endblock %} {% block content %}


{% filter markdown %} # Formatting On {{'SITE_NAME' | app_config}}, you can use Markdown formatting. ## Inline formatting {% endfilter %}
Name Type Displays as
Italics *text* text
Bold **text** text
Code `text` text
Strikethrough ~~text~~ text
Links [{{'SITE_NAME' | app_config}}]({{request.host_url}}) {{'SITE_NAME' | app_config}}
Emojis :marseylove:
{% filter markdown %} ## Block formatting These Markdown tags format an entire paragraph of text at a time.
Use three backticks above and below.
Or, indent the lines with four spaces.
Name Type Displays as
Blockquote > text
text
Headers 1-6 # Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6
Ordered list 1. First thing
2. Second thing
  1. First thing
  2. Second thing
Unordered list * First thing
* Second thing
  • First thing
  • Second thing
Code Block ```
Use three backticks above and below.
Or, indent the lines with four spaces.
```
Spoilers <s> bussy > gussy </s>

bussy > gussy

## Custom Formatting We also have some custom hooks for mentioning users and subreddits. Note that these only work if the mentioned user or subreddit actually exists. {% endfilter %}
Name Type Displays as
Username Mention @QuadNarca @QuadNarca
Subreddit Mention r/{{'SITE_NAME' | app_config}} r/{{'SITE_NAME' | app_config}}
Redditor Mention u/Bardfinn u/Bardfinn
{% include "expanded_image_modal.html" %} {% endblock %}