diff options
author | Fred Drake <fdrake@acm.org> | 1999-01-14 17:06:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-01-14 17:06:09 (GMT) |
commit | 79ad1f19dc5d45251230798a93c74668e4675801 (patch) | |
tree | 2ada7f6a9469bd84ca1cef7e0a53df15b3808174 | |
parent | 348fd06890a964e713e151526b0de5042c68574e (diff) | |
download | cpython-79ad1f19dc5d45251230798a93c74668e4675801.zip cpython-79ad1f19dc5d45251230798a93c74668e4675801.tar.gz cpython-79ad1f19dc5d45251230798a93c74668e4675801.tar.bz2 |
Escape special characters on output.
-rwxr-xr-x | Doc/tools/sgmlconv/esis2sgml.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/tools/sgmlconv/esis2sgml.py b/Doc/tools/sgmlconv/esis2sgml.py index 172e712..d6f3eb9 100755 --- a/Doc/tools/sgmlconv/esis2sgml.py +++ b/Doc/tools/sgmlconv/esis2sgml.py @@ -12,13 +12,15 @@ import esistools import re import string +from xml.utils import escape + def format_attrs(attrs): attrs = attrs.items() attrs.sort() s = '' for name, value in attrs: - s = '%s %s="%s"' % (s, name, value) + s = '%s %s="%s"' % (s, name, escape(value)) return s @@ -39,7 +41,7 @@ def do_convert(ifp, ofp, xml=0): data = data[:-1] if type == "-": data = esistools.decode(data) - ofp.write(data) + ofp.write(escape(data)) if "\n" in data: lastopened = None knownempty = 0 |