mirror of https://github.com/adamdruppe/arsd.git
make pretty string slightly prettier
This commit is contained in:
parent
e83c016c69
commit
792d7c1a10
6
dom.d
6
dom.d
|
@ -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.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue