diff --git a/ankiqt/ui/utils.py b/ankiqt/ui/utils.py index 4d9e4028f..199d2ddd7 100644 --- a/ankiqt/ui/utils.py +++ b/ankiqt/ui/utils.py @@ -240,7 +240,7 @@ def mungeQA(deck, txt): txt = renderLatex(deck, txt) txt = stripSounds(txt) # osx webkit doesn't understand font weight 600 - txt = re.sub("font-weight:.+?;", "font-weight: bold", txt) + txt = re.sub("font-weight:.+?;", "font-weight: bold;", txt) return txt def applyStyles(widget):