diff options
| author | Ralph Amissah <ralph@amissah.com> | 2017-05-01 18:46:11 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 | 
| commit | a9a46fca7397aaa357bfdc2b98e181617bb6887b (patch) | |
| tree | 4a3c214b8139204cdb4cce723f14da7bd34a939f /src/sdp/output_html.d | |
| parent | xml family, special characters, deal with once (diff) | |
xmls work particularly with epub output
Diffstat (limited to 'src/sdp/output_html.d')
| -rw-r--r-- | src/sdp/output_html.d | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d index 509ae43..048d6e9 100644 --- a/src/sdp/output_html.d +++ b/src/sdp/output_html.d @@ -169,7 +169,7 @@ template outputHTML() {          }        }      } -    doc = xhtml_format.html_scroll_head(doc_matters.dochead_meta) ~ doc_html ~ xhtml_format.tail; +    doc = xhtml_format.html_scroll_head(doc_matters) ~ doc_html ~ xhtml_format.tail;      scroll_write_output(doc_matters, doc);    }    void scroll_write_output(M,C)( @@ -244,7 +244,7 @@ template outputHTML() {              break;            case 4:              segment_filename = obj.segment_anchor_tag; -            doc_html[segment_filename] ~= xhtml_format.html_seg_head(doc_matters.dochead_meta); +            doc_html[segment_filename] ~= xhtml_format.html_seg_head(doc_matters);              foreach (top_level_heading; top_level_headings) {                // writeln(top_level_heading);                doc_html[segment_filename] ~= top_level_heading;  | 
