From 94468bdbd957c91bc9fa60e80f207e5f6a7bb12d Mon Sep 17 00:00:00 2001 From: not-a-code-cel Date: Tue, 5 Oct 2021 23:29:54 -0700 Subject: [PATCH] Fleshed out all html formatting in the table --- files/templates/formatting.html | 105 ++++++++++++++++++++++++-------- 1 file changed, 80 insertions(+), 25 deletions(-) diff --git a/files/templates/formatting.html b/files/templates/formatting.html index cee49ea09..fb2780db3 100644 --- a/files/templates/formatting.html +++ b/files/templates/formatting.html @@ -202,16 +202,22 @@ Allowed tags: Line Break - +
+Line 1
+<br>
+Line 2
+				
- Line 1
Line 2 + Line 1 +
+ Line 2 Code - + <code>This is code</code> This is code @@ -220,7 +226,7 @@ Allowed tags: Strikethrough - + The last word will have a <del>strikethrough</del> The last word will have a strikethrough @@ -229,7 +235,7 @@ Allowed tags: Emphasis - + We <em>cannot</em> live like this. We cannot live like this. @@ -238,7 +244,14 @@ Allowed tags: Headings - +
+<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>
+				

This is heading 1

@@ -252,7 +265,11 @@ Allowed tags: Horizontal Rule - +
+Text 1
+<hr>
+Text 2
+				
Text 1 @@ -263,7 +280,8 @@ Allowed tags: Italics - + <i>This</i> is how you get italics. + This is how you get italics. This is how you get italics. @@ -272,7 +290,16 @@ Allowed tags: Lists - +
+<ul>
+	<li>Bullet 1</li>
+	<li>Bullet 2</li>
+</ul>
+<ol>
+	<li>Number 1</li>
+	<li>Number 2</li>
+</ol>
+