Bold cw button

main
Bob Mottram 2020-06-26 18:03:25 +01:00
parent c4c04fa6d3
commit de4f00bb8c
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ def getContentWarningButton(postID: str, translate: {},
content: str) -> str:
"""Returns the markup for a content warning button
"""
return '<details><summary>' + \
translate['SHOW MORE'] + '</summary>' + \
return '<details><summary><b>' + \
translate['SHOW MORE'] + '</b></summary>' + \
'<div id="' + postID + '">' + content + \
'</div></details>'