From 792d7c1a10405b3c9baf6dfd4a988c039e859c11 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 15 Oct 2020 22:52:42 -0400 Subject: [PATCH] make pretty string slightly prettier --- dom.d | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dom.d b/dom.d index 0bb8f15..24ecba4 100644 --- a/dom.d +++ b/dom.d @@ -1410,11 +1410,14 @@ class Document : FileResource { because whitespace may be significant content in XML. +/ 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 ~= ""; + */ s ~= root.toPrettyString(insertComments, indentationLevel, indentWith); foreach(a; piecesAfterRoot) @@ -8898,6 +8901,7 @@ immutable string html = q{ unittest { try { auto doc = new XmlDocument(""); + assert(0); } catch(Exception e) { // good; it should throw an exception, not an error. }