466 lines
8.3 KiB
HTML
466 lines
8.3 KiB
HTML
{% extends "default.html" %}
|
|
{% block title %}
|
|
<title>{{SITE_TITLE}} - Formatting</title>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<pre>
|
|
|
|
|
|
</pre>
|
|
<h1>Markdown Formatting</h1>
|
|
|
|
You can use Markdown formatting:
|
|
|
|
<pre>
|
|
|
|
</pre>
|
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
<thead class="bg-primary text-white">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>What you type</th>
|
|
<th>What gets displayed</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>Horizontal Rule</td>
|
|
<td>
|
|
<pre>
|
|
Text 1
|
|
---
|
|
Text 2
|
|
</pre>
|
|
</td>
|
|
<td>
|
|
Text 1
|
|
<hr>
|
|
Text 2
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Links</td>
|
|
<td>[{{SITE_TITLE}}]({{SITE_FULL}}/)</td>
|
|
<td><a href="/">{{SITE_TITLE}}</a></td>
|
|
</tr>
|
|
<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>
|
|
<pre>
|
|
Use three backticks above and below.
|
|
Or, indent the lines with four spaces.
|
|
</pre>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Spoilers</td>
|
|
<td>||batman's parents are dead||</td>
|
|
<td><p><spoiler>batman's parents are dead</spoiler></p></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Username Mention</td>
|
|
<td>@QuadNarca</td>
|
|
<td><a class="d-inline-block" href="/@QuadNarca"><img alt="@QuadNarca profile picture" loading="lazy" src="/pp/29">@QuadNarca</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Subreddit Mention</td>
|
|
<td>r/drama</td>
|
|
<td><a class="d-inline-block" rel="nofollow noopener noreferrer" href="https://www.reddit.com/r/drama/">r/drama</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></div>
|
|
|
|
<h1>HTML Formatting</h1>
|
|
|
|
And we allow custom HTML in most places:
|
|
|
|
<pre>
|
|
|
|
</pre>
|
|
|
|
<h4>Allowed Tags</h4>
|
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
<thead class="bg-primary text-white">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>What you type</th>
|
|
<th>What gets displayed</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<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>
|
|
<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>
|
|
<pre style="color:var(--white)">
|
|
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.
|
|
</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>
|
|
<th>Col 1</th>
|
|
<th>Col 2</th>
|
|
<th>Col 3</th>
|
|
</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>
|
|
<th>Col 1</th>
|
|
<th>Col 2</th>
|
|
<th>Col 3</th>
|
|
</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>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>
|
|
</tbody>
|
|
</table></div>
|
|
|
|
<h4>Allowed Attributes</h4>
|
|
|
|
<div class="overflow-x-auto"><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>direction</td>
|
|
</tr>
|
|
<tr>
|
|
<td>behavior</td>
|
|
</tr>
|
|
<tr>
|
|
<td>scrollamount</td>
|
|
</tr>
|
|
</tbody>
|
|
</table></div>
|
|
|
|
<h5>Allowed Styles</h5>
|
|
|
|
<div class="overflow-x-auto"><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>
|
|
<tr>
|
|
<td>background-color</td>
|
|
</tr>
|
|
<tr>
|
|
<td>font-weight</td>
|
|
</tr>
|
|
<tr>
|
|
<td>text-align</td>
|
|
</tr>
|
|
</tbody>
|
|
</table></div>
|
|
|
|
<h5>Comment Commands</h5>
|
|
|
|
{% include "component/modal/expanded_image.html" %}
|
|
|
|
{% endblock %}
|