aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output_epub.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdp/output_epub.d')
-rw-r--r--src/sdp/output_epub.d16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/sdp/output_epub.d b/src/sdp/output_epub.d
index 2cbe885..0cc3a31 100644
--- a/src/sdp/output_epub.d
+++ b/src/sdp/output_epub.d
@@ -275,18 +275,26 @@ template outputEPub() {
case "block":
switch (obj.is_a) {
case "quote":
- doc_epub[segment_filename] ~= xhtml_format.nugget(obj);
+ auto t = xhtml_format.quote_seg(obj, suffix);
+ doc_epub[segment_filename] ~= to!string(t[0]);
+ doc_epub_endnotes[segment_filename] ~= t[1];
break;
case "group":
- doc_epub[segment_filename] ~= xhtml_format.nugget(obj);
+ auto t = xhtml_format.group_seg(obj, suffix);
+ doc_epub[segment_filename] ~= to!string(t[0]);
+ doc_epub_endnotes[segment_filename] ~= t[1];
break;
case "block":
- doc_epub[segment_filename] ~= xhtml_format.nugget(obj);
+ auto t = xhtml_format.block_seg(obj, suffix);
+ doc_epub[segment_filename] ~= to!string(t[0]);
+ doc_epub_endnotes[segment_filename] ~= t[1];
break;
case "poem":
break;
case "verse":
- doc_epub[segment_filename] ~= xhtml_format.nugget(obj);
+ auto t = xhtml_format.verse_seg(obj, suffix);
+ doc_epub[segment_filename] ~= to!string(t[0]);
+ doc_epub_endnotes[segment_filename] ~= t[1];
break;
case "code":
doc_epub[segment_filename] ~= xhtml_format.code(obj);