Removed commented out code

This commit is contained in:
Veronica K. B. Olsen
2020-08-18 00:29:18 +02:00
parent 2f177c50fc
commit a9ac3a2aa1
+3 -5
View File
@@ -45,10 +45,9 @@ class ToHtml(Tokenizer):
self.cssStyles = True self.cssStyles = True
self.repDict = { self.repDict = {
"<" : "&lt;", "<" : "&lt;",
">" : "&gt;", ">" : "&gt;",
"&" : "&amp;", "&" : "&amp;",
# "\t" : "!!tab!!", # "&emsp;"*2,
nwUnicode.U_ENDASH : nwUnicode.H_ENDASH, nwUnicode.U_ENDASH : nwUnicode.H_ENDASH,
nwUnicode.U_EMDASH : nwUnicode.H_EMDASH, nwUnicode.U_EMDASH : nwUnicode.H_EMDASH,
nwUnicode.U_HELLIP : nwUnicode.H_HELLIP, nwUnicode.U_HELLIP : nwUnicode.H_HELLIP,
@@ -77,7 +76,6 @@ class ToHtml(Tokenizer):
self.doKeywords = True self.doKeywords = True
self.doComments = doComments self.doComments = doComments
self.doSynopsis = doSynopsis self.doSynopsis = doSynopsis
# self.repDict["\t"] = r"!!tab!!" # The viewer replaces these
self._buildRegEx() self._buildRegEx()
return return