mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 13:23:41 -05:00
another hotfix xwx
This commit is contained in:
parent
c2461c7c1f
commit
66423b7379
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
## 1.5.4
|
||||
|
||||
### Fixes
|
||||
* lists and horizontal rules not rendering
|
||||
|
||||
## 1.5.3
|
||||
|
||||
### Fixes
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -139,7 +139,10 @@ def renderMarkdown(text):
|
|||
's',
|
||||
'del',
|
||||
'a',
|
||||
'button'
|
||||
'button',
|
||||
'ol',
|
||||
'li',
|
||||
'hr'
|
||||
]
|
||||
allowed_attrs = {
|
||||
'a': 'href',
|
||||
|
|
Loading…
Add table
Reference in a new issue