diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-12-03 22:11:59 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-12-03 22:17:58 -0500 |
commit | bb03ff22fa3af8b731a591fd450b85c5c0c57f02 (patch) | |
tree | e89e74aa6e619fd25ca18c24997bbd062e6e2ba0 /src/doc_reform/io_out/xmls.d | |
parent | xmls, html header band (diff) |
metaverse, xml dom close eof
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, |