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
@@ -107,3 +107,3 @@ class HtmlTextNode(HtmlSeqNode):
107 else: 107 else:
108 s = html_escape(self.content, quote=True) 108 s = html_escape(self.content, quote=False)
109 return s 109 return s
diff --git a/testdata/headings.html b/testdata/headings.html
index 905c46b..de9c9c3 100644
--- a/testdata/headings.html
+++ b/testdata/headings.html
@@ -7,3 +7,3 @@ generate a <a href="http://en.wiktionary.org/wiki/table%20of%20contents">table o
7 7
8<p>Using more &quot;equals&quot; (=) signs creates a subsection.</p> 8<p>Using more "equals" (=) signs creates a subsection.</p>
9<h4>A smaller subsection</h4> 9<h4>A smaller subsection</h4>

Return to:

Send suggestions and report system problems to the System administrator.