make pretty string slightly prettier

This commit is contained in:
Adam D. Ruppe 2020-10-15 22:52:42 -04:00
parent e83c016c69
commit 792d7c1a10
1 changed files with 5 additions and 1 deletions

6
dom.d
View File

@ -1410,11 +1410,14 @@ class Document : FileResource {
because whitespace may be significant content in XML. because whitespace may be significant content in XML.
+/ +/
string toPrettyString(bool insertComments = false, int indentationLevel = 0, string indentWith = "\t") const { string toPrettyString(bool insertComments = false, int indentationLevel = 0, string indentWith = "\t") const {
string s = prolog; import std.string;
string s = prolog.strip;
/*
if(insertComments) s ~= "<!--"; if(insertComments) s ~= "<!--";
s ~= "\n"; s ~= "\n";
if(insertComments) s ~= "-->"; if(insertComments) s ~= "-->";
*/
s ~= root.toPrettyString(insertComments, indentationLevel, indentWith); s ~= root.toPrettyString(insertComments, indentationLevel, indentWith);
foreach(a; piecesAfterRoot) foreach(a; piecesAfterRoot)
@ -8898,6 +8901,7 @@ immutable string html = q{
unittest { unittest {
try { try {
auto doc = new XmlDocument("<testxmlns:foo=\"/\"></test>"); auto doc = new XmlDocument("<testxmlns:foo=\"/\"></test>");
assert(0);
} catch(Exception e) { } catch(Exception e) {
// good; it should throw an exception, not an error. // good; it should throw an exception, not an error.
} }