aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-14 15:28:20 +0000
committerubq323 <ubq323>2021-06-14 15:28:20 +0000
commit25353f2b7da79dc47c22f154b84e3fe92763ebfb (patch)
tree36f7c8053030213f6339e12386488b7839822ca2
parent83e932b42be2bab7390e9669fafcbd2d7e934a1b (diff)
blockquote styling and apparently h6 is a thing
-rw-r--r--apioforum/mdrender.py1
-rw-r--r--apioforum/static/style.css6
2 files changed, 7 insertions, 0 deletions
diff --git a/apioforum/mdrender.py b/apioforum/mdrender.py
index 20e86bb..fde1c85 100644
--- a/apioforum/mdrender.py
+++ b/apioforum/mdrender.py
@@ -7,6 +7,7 @@ allowed_tags = [
'h3',
'h4',
'h5',
+ 'h6',
'pre',
'del',
]
diff --git a/apioforum/static/style.css b/apioforum/static/style.css
index 33fd433..8457f0e 100644
--- a/apioforum/static/style.css
+++ b/apioforum/static/style.css
@@ -144,3 +144,9 @@ nav a { color: blue; text-decoration: none }
margin: auto;
}
}
+
+blockquote {
+ margin-left: 10px;
+ padding-left: 10px;
+ border-left: 3px solid grey;
+}