From 25353f2b7da79dc47c22f154b84e3fe92763ebfb Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 14 Jun 2021 15:28:20 +0000 Subject: blockquote styling and apparently h6 is a thing --- apioforum/mdrender.py | 1 + apioforum/static/style.css | 6 ++++++ 2 files changed, 7 insertions(+) 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; +} -- cgit v1.2.3