mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-20 05:43:41 -05:00
urgent fix 2
This commit is contained in:
parent
432d44fc41
commit
c2461c7c1f
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
## 1.5.3
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* custom buttons not displaying correctly
|
||||||
|
|
||||||
## 1.5.2
|
## 1.5.2
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|
|
@ -5,6 +5,6 @@ blacklistFile = 'word_blacklist.txt'
|
||||||
configFile = 'config.json'
|
configFile = 'config.json'
|
||||||
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
|
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
|
||||||
appName = 'CatAsk'
|
appName = 'CatAsk'
|
||||||
version = '1.5.2'
|
version = '1.5.3'
|
||||||
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
|
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
|
||||||
version_id = '-alpha'
|
version_id = '-alpha'
|
||||||
|
|
|
@ -142,7 +142,8 @@ def renderMarkdown(text):
|
||||||
'button'
|
'button'
|
||||||
]
|
]
|
||||||
allowed_attrs = {
|
allowed_attrs = {
|
||||||
'a': 'href'
|
'a': 'href',
|
||||||
|
'button': 'class'
|
||||||
}
|
}
|
||||||
# hard_wrap=True means that newlines will be
|
# hard_wrap=True means that newlines will be
|
||||||
# converted into <br> tags
|
# converted into <br> tags
|
||||||
|
|
Loading…
Add table
Reference in a new issue