typo in bold fix

This commit is contained in:
Damien Elmes 2010-10-25 13:08:39 +09:00
parent d1434a0430
commit f5a931bb07

View file

@ -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):