2021-10-15 14:08:27 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
|
|
<title>{{'SITE_NAME' | app_config}} - Formatting</title>
|
|
|
|
<meta name="description" content="{{'SITE_NAME' | app_config}} Formatting">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h1>Formatting</h1>
|
|
|
|
|
|
|
|
On {{'SITE_NAME' | app_config}}, you can use Markdown formatting.
|
|
|
|
|
2021-10-22 23:50:00 +00:00
|
|
|
<pre>
|
|
|
|
|
|
|
|
</pre>
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
<h2>Inline formatting</h2>
|
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Displays as</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Italics</td>
|
|
|
|
<td>*text*</td>
|
|
|
|
<td><i>text</i></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Bold</td>
|
|
|
|
<td>**text**</td>
|
|
|
|
<td><b>text</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Code</td>
|
|
|
|
<td>`text`</td>
|
|
|
|
<td><code>text</code></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Strikethrough</td>
|
|
|
|
<td>~~text~~</td>
|
|
|
|
<td><del>text</del></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Links</td>
|
|
|
|
<td>[{{'SITE_NAME' | app_config}}]({{request.host_url}})</td>
|
|
|
|
<td><a href="{{request.host_url}}">{{'SITE_NAME' | app_config}}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Emojis</td>
|
|
|
|
<td>:marseylove:</td>
|
2021-12-06 20:09:02 +00:00
|
|
|
<td><img loading="lazy" data-bs-toggle="tooltip" alt=":marseylove:" data-bs-original-title=":marseylove:" delay="0" height="30" src="/assets/images/emojis/marseylove.webp?v=1"></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Mirrored Emojis</td>
|
|
|
|
<td>:!marseylove:</td>
|
2021-12-06 20:09:02 +00:00
|
|
|
<td><img loading="lazy" data-bs-toggle="tooltip" class="mirrored" alt=":!marseylove:" data-bs-original-title=":!marseylove:" delay="0" height="30" src="/assets/images/emojis/marseylove.webp?v=1"></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
</tr>
|
2021-12-03 23:34:03 +00:00
|
|
|
<tr>
|
|
|
|
<td>Large Emojis</td>
|
|
|
|
<td>:#marseylove:</td>
|
2021-12-06 20:09:02 +00:00
|
|
|
<td><img loading="lazy" data-bs-toggle="tooltip" alt=":!marseylove:" data-bs-original-title=":!marseylove:" delay="0" src="/assets/images/emojis/marseylove.webp?v=1"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Large Mirroed Emojis</td>
|
|
|
|
<td>:#!marseylove:</td>
|
2021-12-03 23:34:03 +00:00
|
|
|
<td><img loading="lazy" data-bs-toggle="tooltip" class="mirrored" alt=":!marseylove:" data-bs-original-title=":!marseylove:" delay="0" src="/assets/images/emojis/marseylove.webp?v=1"></td>
|
|
|
|
</tr>
|
2021-10-15 14:08:27 +00:00
|
|
|
<tr>
|
|
|
|
<td>Poll Options</td>
|
|
|
|
<td>$$bussy$$</td>
|
|
|
|
<td>
|
|
|
|
<div class="custom-control">
|
|
|
|
<input type="checkbox" class="custom-control-input" id="422741" name="option">
|
|
|
|
<label class="custom-control-label" for="422741">bussy - <a href="/votes?link=t3_422741"><span id="poll-422741">0</span> votes</a></label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2>Block formatting</h2>
|
|
|
|
|
|
|
|
These Markdown tags format an entire paragraph of text at a time.
|
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Displays as</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Blockquote</td>
|
|
|
|
<td>> text</td>
|
|
|
|
<td><blockquote>text</blockquote></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Headers 1-6</td>
|
|
|
|
<td># Header 1<br>## Header 2<br>### Header 3<br>#### Header 4<br>##### Header 5<br>###### Header 6</td>
|
|
|
|
<td><h1>Header 1</h1><h2>Header 2</h2><h3>Header 3</h3><h4>Header 4</h4><h5>Header 5</h5><h6>Header 6</h6></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Ordered list</td>
|
|
|
|
<td>1. First thing<br>2. Second thing</td>
|
|
|
|
<td><ol><li>First thing</li><li>Second thing</li></ol></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Unordered list</td>
|
|
|
|
<td>* First thing<br>* Second thing</td>
|
|
|
|
<td><ul><li>First thing</li><li>Second thing</li></ul></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Code Block</td>
|
|
|
|
<td>```<br>Use three backticks above and below.<br>Or, indent the lines with four spaces.<br>```</td>
|
|
|
|
<td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Spoilers</td>
|
|
|
|
<td><s> bussy > gussy </s></td>
|
|
|
|
<td><p class="spoiler">bussy > gussy</p></td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
Use three backticks above and below.
|
|
|
|
Or, indent the lines with four spaces.
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<h2>Custom Formatting</h2>
|
|
|
|
|
|
|
|
We also have some custom hooks for mentioning users and subreddits. Note that these only work if the mentioned user or subreddit actually exists.
|
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Displays as</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Username Mention</td>
|
|
|
|
<td>@QuadNarca</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td><a class="d-inline-block" href="/@QuadNarca"><img loading="lazy" src="/uid/29/pic" class="pp20">@QuadNarca</a></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Subreddit Mention</td>
|
|
|
|
<td>r/{{'SITE_NAME' | app_config}}</td>
|
|
|
|
<td><a class="d-inline-block" rel="nofollow noopener noreferrer" href="https://www.reddit.com/r/{{'SITE_NAME' | app_config}}/">r/{{'SITE_NAME' | app_config}}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Redditor Mention</td>
|
|
|
|
<td>u/Bardfinn</td>
|
|
|
|
<td><a class="d-inline-block" rel="nofollow noopener noreferrer" href="https://www.reddit.com/u/Bardfinn/">u/Bardfinn</a></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2>Custom HTML</h2>
|
|
|
|
|
|
|
|
And we allow custom HTML in most places.
|
|
|
|
|
|
|
|
Allowed tags:
|
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Displays as</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Bold</td>
|
|
|
|
<td>This will be <b>bold</b></td>
|
|
|
|
<td>
|
|
|
|
This will be <b>bold</b>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Blockquote</td>
|
|
|
|
<td>
|
|
|
|
<blockquote>This is a blockquote</blockquote>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<blockquote>
|
|
|
|
This is a blockquote
|
|
|
|
</blockquote>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Line Break</td>
|
|
|
|
<td>
|
2021-11-30 13:15:41 +00:00
|
|
|
<pre style="color:var(--white)">
|
2021-10-15 14:08:27 +00:00
|
|
|
Line 1
|
|
|
|
<br>
|
|
|
|
Line 2
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Line 1
|
|
|
|
<br>
|
|
|
|
Line 2
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Code</td>
|
|
|
|
<td>
|
|
|
|
<code>This is code</code>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<code>This is code</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Strikethrough</td>
|
|
|
|
<td>
|
|
|
|
The last word will have a <del>strikethrough</del>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
The last word will have a <del>strikethrough</del>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Emphasis</td>
|
|
|
|
<td>
|
|
|
|
We <em>cannot</em> live like this.
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
We <em>cannot</em> live like this.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Headings</td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
<h1>This is heading 1</h1>
|
|
|
|
<h2>This is heading 2</h2>
|
|
|
|
<h3>This is heading 3</h3>
|
|
|
|
<h4>This is heading 4</h4>
|
|
|
|
<h5>This is heading 5</h5>
|
|
|
|
<h6>This is heading 6</h6>
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<h1>This is heading 1</h1>
|
|
|
|
<h2>This is heading 2</h2>
|
|
|
|
<h3>This is heading 3</h3>
|
|
|
|
<h4>This is heading 4</h4>
|
|
|
|
<h5>This is heading 5</h5>
|
|
|
|
<h6>This is heading 6</h6>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Horizontal Rule</td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
Text 1
|
|
|
|
<hr>
|
|
|
|
Text 2
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Text 1
|
|
|
|
<hr>
|
|
|
|
Text 2
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Italics</td>
|
|
|
|
<td>
|
|
|
|
<i>This</i> is how you get italics.
|
|
|
|
<i>This</i> is how you get italics.
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<i>This</i> is how you get italics.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Lists</td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
<ul>
|
|
|
|
<li>Bullet 1</li>
|
|
|
|
<li>Bullet 2</li>
|
|
|
|
</ul>
|
|
|
|
<ol>
|
|
|
|
<li>Number 1</li>
|
|
|
|
<li>Number 2</li>
|
|
|
|
</ol>
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ul>
|
|
|
|
<li>Bullet 1</li>
|
|
|
|
<li>Bullet 2</li>
|
|
|
|
</ul>
|
|
|
|
<ol>
|
|
|
|
<li>Number 1</li>
|
|
|
|
<li>Number 2</li>
|
|
|
|
</ol>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Paragraphs</td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
<p>Paragraph 1</p>
|
|
|
|
<p>Paragraph 2</p>
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<p>Paragraph 1</p>
|
|
|
|
<p>Paragraph 2</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Preformatted Text</td>
|
|
|
|
<td><pre>
|
|
|
|
<pre>
|
|
|
|
Text in a pre element
|
|
|
|
is displayed in a fixed-width
|
|
|
|
font, and it preserves
|
|
|
|
both spaces and
|
|
|
|
line breaks
|
|
|
|
</pre>
|
|
|
|
</pre></td>
|
|
|
|
<td>
|
|
|
|
<pre>
|
|
|
|
Text in a pre element
|
|
|
|
is displayed in a fixed-width
|
|
|
|
font, and it preserves
|
|
|
|
both spaces and
|
|
|
|
line breaks
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Strong</td>
|
|
|
|
<td>
|
|
|
|
<strong>This text is important!</strong>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<strong>This text is important!</strong>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Subscript</td>
|
|
|
|
<td>
|
|
|
|
This text contains <sub>subscript</sub> text.
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
This text contains <sub>subscript</sub> text.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Superscript</td>
|
|
|
|
<td>
|
|
|
|
E = mc<sup>2</sup>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
E = mc<sup>2</sup>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Tables</td>
|
|
|
|
<td><pre>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>Col 1</td>
|
|
|
|
<td>Col 2</td>
|
|
|
|
<td>Col 3</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>1</td>
|
|
|
|
<td>2</td>
|
|
|
|
<td>3</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>4</td>
|
|
|
|
<td>5</td>
|
|
|
|
<td>6</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table></pre>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>Col 1</td>
|
|
|
|
<td>Col 2</td>
|
|
|
|
<td>Col 3</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>1</td>
|
|
|
|
<td>2</td>
|
|
|
|
<td>3</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>4</td>
|
|
|
|
<td>5</td>
|
|
|
|
<td>6</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Marquee</td>
|
|
|
|
<td>
|
2021-11-08 12:58:10 +00:00
|
|
|
<marquee direction="up" behavior="scroll" scrollamount="10" height="100">
|
2021-10-15 14:08:27 +00:00
|
|
|
This is a sample scrolling text that has scrolls in the upper direction.
|
|
|
|
</marquee>
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-11-08 12:58:10 +00:00
|
|
|
<marquee direction="up" behavior="scroll" scrollamount="10" height="100">
|
2021-10-15 14:08:27 +00:00
|
|
|
This is a sample scrolling text that has scrolls in the upper direction.
|
|
|
|
</marquee>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Links</td>
|
|
|
|
<td>
|
|
|
|
This is a <a href='https://www.w3schools.com/tags/tag_a.asp'>link</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
This is a <a href='https://www.w3schools.com/tags/tag_a.asp'>link</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Images</td>
|
|
|
|
<td>
|
|
|
|
<img src="https://i.imgur.com/SwVuagI_d.webp" width="200">
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<img src="https://i.imgur.com/SwVuagI_d.webp" width="200">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Span</td>
|
|
|
|
<td>
|
|
|
|
My mother has <span style="color:blue">blue</span> eyes.
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
My mother has <span style="color:blue">blue</span> eyes.
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-11-06 15:21:05 +00:00
|
|
|
<h2>Allowed Attributes</h2>
|
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>href</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>style</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>src</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>class</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>title</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>rel</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>data-bs-original-name</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>direction</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>behavior</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>scrollamount</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-10-22 23:50:00 +00:00
|
|
|
<h2>Allowed Styles</h2>
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>color</td>
|
|
|
|
</tr>
|
2021-11-04 15:41:18 +00:00
|
|
|
<tr>
|
|
|
|
<td>background-color</td>
|
|
|
|
</tr>
|
2021-10-15 14:08:27 +00:00
|
|
|
<tr>
|
|
|
|
<td>font-weight</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>transform</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>-webkit-transform</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-11-30 18:20:56 +00:00
|
|
|
{% include "expanded_image_modal.html" %}
|
|
|
|
|
2021-10-27 00:37:34 +00:00
|
|
|
<style>
|
2021-11-03 14:18:21 +00:00
|
|
|
@media (max-width: 767.98px) {
|
|
|
|
table {
|
|
|
|
display: inline-block;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2021-10-27 00:37:34 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{% endblock %}
|