diff --git a/CHANGELOG.md b/CHANGELOG.md index 649420c..7b24ba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.5.4 + +### Fixes +* lists and horizontal rules not rendering + ## 1.5.3 ### Fixes diff --git a/constants.py b/constants.py index 0e180b9..f3fb4e2 100644 --- a/constants.py +++ b/constants.py @@ -5,6 +5,6 @@ blacklistFile = 'word_blacklist.txt' configFile = 'config.json' faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon' appName = 'CatAsk' -version = '1.5.3' +version = '1.5.4' # id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9 version_id = '-alpha' diff --git a/functions.py b/functions.py index 629e86d..8e5830f 100644 --- a/functions.py +++ b/functions.py @@ -139,7 +139,10 @@ def renderMarkdown(text): 's', 'del', 'a', - 'button' + 'button', + 'ol', + 'li', + 'hr' ] allowed_attrs = { 'a': 'href',