diff options
-rw-r--r-- | apioforum/mdrender.py | 1 | ||||
-rw-r--r-- | apioforum/static/style.css | 6 |
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; +} |