diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-09 14:18:45 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-09 14:31:07 -0500 |
commit | e9ff8330d44330ed87bb2cce562f132a9a005f3d (patch) | |
tree | fbf2ea5031afeb04a8655348fbd8c3eeb4201eab /src/doc_reform/io_out/html.d | |
parent | quote block, footnotes, markup? (diff) |
xmls, copyright and license display
Diffstat (limited to 'src/doc_reform/io_out/html.d')
-rw-r--r-- | src/doc_reform/io_out/html.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc_reform/io_out/html.d b/src/doc_reform/io_out/html.d index 136229b..4efc91d 100644 --- a/src/doc_reform/io_out/html.d +++ b/src/doc_reform/io_out/html.d @@ -234,7 +234,7 @@ template outputHTML() { doc = xhtml_format.html_head(doc_matters, "scroll") ~ doc_html ~ xhtml_format.dom_close - ~ xhtml_format.tail; + ~ xhtml_format.tail(doc_matters); scroll_write_output(doc, doc_matters); } @trusted void scroll_write_output(D,M)( @@ -543,7 +543,7 @@ template outputHTML() { foreach (docseg; doc_html_endnotes[seg_filename]) { f.writeln(docseg); } - f.writeln(xhtml_format.tail); + f.writeln(xhtml_format.tail(doc_matters)); } } catch (ErrnoException ex) { // handle error |