summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-08-05 13:13:22 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-08-05 13:13:22 +0300
commiteb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2 (patch)
tree8d7a59ec76a439a65d27d319a34a06400715f198
parentcb47437dc165538a85fcc0a9a0c8ea59d403ab26 (diff)
downloadwikitrans-eb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2.tar.gz
wikitrans-eb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2.tar.bz2
Improve inter-version compatibility
* WikiTrans/wiki2html.py (HtmlTextNode): Use quote=False to make sure same output is obtained in Python 2.7 and 3.x * testdata/headings.html: Update
-rw-r--r--WikiTrans/wiki2html.py2
-rw-r--r--testdata/headings.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/WikiTrans/wiki2html.py b/WikiTrans/wiki2html.py
index 7c71602..00f02b5 100644
--- a/WikiTrans/wiki2html.py
+++ b/WikiTrans/wiki2html.py
@@ -105,7 +105,7 @@ class HtmlTextNode(HtmlSeqNode):
if isinstance(self.content,list):
s = ''.join(self.content)
else:
- s = html_escape(self.content, quote=True)
+ s = html_escape(self.content, quote=False)
return s
class HtmlHdrNode(WikiHdrNode):
diff --git a/testdata/headings.html b/testdata/headings.html
index 905c46b..de9c9c3 100644
--- a/testdata/headings.html
+++ b/testdata/headings.html
@@ -5,7 +5,7 @@ sections. The Wiki software can automatically
generate a <a href="http://en.wiktionary.org/wiki/table%20of%20contents">table of contents</a> from them.</p>
<h3>Subsection</h3>
-<p>Using more &quot;equals&quot; (=) signs creates a subsection.</p>
+<p>Using more "equals" (=) signs creates a subsection.</p>
<h4>A smaller subsection</h4>
<p>Don't skip levels,

Return to:

Send suggestions and report system problems to the System administrator.