fix #14056, incorporate review comments

(cherry picked from commit a764a5b9bc)
This commit is contained in:
kemifl
2020-11-23 19:53:57 +01:00
committed by narimiran
parent 1eda325177
commit 4b27458cfc
2 changed files with 37 additions and 12 deletions

View File

@@ -16,7 +16,18 @@ fpqeew
<Students>
<Student Name="Aprilfoo" />
<Student Name="bar" />
</Students>'''
</Students>
<chapter>
<title>This is a Docbook title</title>
<para>
This is a Docbook paragraph containing <emphasis>emphasized</emphasis>,
<literal>literal</literal> and <replaceable>replaceable</replaceable>
text. Sometimes scrunched together like this:
<literal>literal</literal><replaceable>replaceable</replaceable>
and sometimes not:
<literal>literal</literal> <replaceable>replaceable</replaceable>
</para>
</chapter>'''
"""
block:
@@ -123,7 +134,7 @@ block:
x.num += 10
echo j
import xmltree, xmlparser, streams, strtabs
import xmltree, xmlparser, parsexml, streams, strtabs
block:
var d = parseXml(newStringStream """<Students>
@@ -134,3 +145,17 @@ block:
x = <>Student(Name=x.attrs["Name"] & "foo")
d[1].attrs["Name"] = "bar"
echo d
block:
var d = parseXml(newStringStream """<chapter>
<title>This is a Docbook title</title>
<para>
This is a Docbook paragraph containing <emphasis>emphasized</emphasis>,
<literal>literal</literal> and <replaceable>replaceable</replaceable>
text. Sometimes scrunched together like this:
<literal>literal</literal><replaceable>replaceable</replaceable>
and sometimes not:
<literal>literal</literal> <replaceable>replaceable</replaceable>
</para>
</chapter>""",{reportComments, reportWhitespace})
echo d