diff options
Diffstat (limited to 'src/doc_reform/io_out/xmls.d')
-rw-r--r-- | src/doc_reform/io_out/xmls.d | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/src/doc_reform/io_out/xmls.d b/src/doc_reform/io_out/xmls.d index 747212a..7d7c495 100644 --- a/src/doc_reform/io_out/xmls.d +++ b/src/doc_reform/io_out/xmls.d @@ -355,15 +355,20 @@ template outputXHTMLs() { ); return o; } - @safe string tail() { - string o; - o = format(q"┃ - <a name="bottom" id="bottom"></a> - <a name="end" id="end"></a> - </body> - </html>┃"); - return o; - } +@safe string dom_close() { + string o; + o = format(q"┃</div>┃"); + return o; +} +@safe string tail() { + string o; + o = format(q"┃ + <a name="bottom" id="bottom"></a> + <a name="end" id="end"></a> +</body> +</html>┃"); + return o; +} @safe string inline_images(O,M)( string _txt, const O obj, |