diff options
| author | Ralph Amissah <ralph@amissah.com> | 2017-03-22 14:54:07 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 | 
| commit | cdaba1c73f0555e1128a7a35addddcfaf715dbde (patch) | |
| tree | bae4b5cbacd1db42d993b5043ff9c66c8478f08c /src/sdp/output_html.d | |
| parent | 0.13.6 dlang function calls, syntax (ufcs related), logic should be retained (diff) | |
0.13.7 tables ao and html output, poem html output
Diffstat (limited to 'src/sdp/output_html.d')
| -rw-r--r-- | src/sdp/output_html.d | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d index 6d4e0c5..a05812f 100644 --- a/src/sdp/output_html.d +++ b/src/sdp/output_html.d @@ -83,7 +83,7 @@ template outputHTML() {              case "poem":                break;              case "verse": -              doc_html ~= xhtml_format.nugget(obj); +              doc_html ~= xhtml_format.verse(obj);                break;              case "group":                doc_html ~= xhtml_format.nugget(obj); @@ -95,7 +95,7 @@ template outputHTML() {                doc_html ~= xhtml_format.nugget(obj);                break;              case "table": -              doc_html ~= xhtml_format.para_scroll(obj, suffix); +              doc_html ~= xhtml_format.table(obj);                break;              case "code":                doc_html ~= xhtml_format.code(obj); @@ -304,7 +304,7 @@ template outputHTML() {                case "poem":                  break;                case "verse": -                doc_html[segment_filename] ~= xhtml_format.nugget(obj); +                doc_html[segment_filename] ~= xhtml_format.verse(obj);                  break;                case "group":                  doc_html[segment_filename] ~= xhtml_format.nugget(obj); @@ -316,9 +316,8 @@ template outputHTML() {                  doc_html[segment_filename] ~= xhtml_format.nugget(obj);                  break;                case "table": -                auto t = xhtml_format.para_seg(obj, suffix); -                doc_html[segment_filename] ~= t[0]; -                doc_html_endnotes[segment_filename] ~= t[1]; +                doc_html[segment_filename] ~= xhtml_format.table(obj); +                doc_html_endnotes[segment_filename] ~= "";                  break;                case "code":                  doc_html[segment_filename] ~= xhtml_format.code(obj); | 
