Add " to unescape function in wiki.py

master
Paul Walko 2017-02-21 19:45:50 +00:00
parent 4b45f8dc5d
commit a10f513dbd
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class Wiki(object):
s = s.replace('&lt;', '<')
s = s.replace('&amp;', '&')
s = s.replace('&#160;', ' ')
s = s.replace('&quot;', '"')
return s
@staticmethod