aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output/epub3.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2018-06-13 18:19:46 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:15 -0400
commitf78907dd0dbcfa12698f85a6cebe77f3f5de46e9 (patch)
tree75e4adfd5404caf6b7805c5aedf977d5e3709505 /src/sdp/output/epub3.d
parent0.26.3 object info changes (diff)
object_number, replaces object_cite_number in code
Diffstat (limited to 'src/sdp/output/epub3.d')
-rw-r--r--src/sdp/output/epub3.d12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sdp/output/epub3.d b/src/sdp/output/epub3.d
index 18b9986..303898d 100644
--- a/src/sdp/output/epub3.d
+++ b/src/sdp/output/epub3.d
@@ -117,7 +117,7 @@ template outputEPub3() {
"%s~ [%s.xhtml#%s] %s",
obj.marked_up_level,
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
obj.text
);
}
@@ -531,23 +531,23 @@ template outputEPub3() {
format(q"¶ <item id="%s.xhtml#%s" href="%s.xhtml#%s" media-type="application/xhtml+xml" />
¶",
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
);
oepbs_content_parts["spine"] ~=
format(q"¶ <itemref idref="%s.xhtml#%s" linear="yes" />
¶",
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
);
oepbs_content_parts["guide"] ~=
format(q"¶ <reference type="%s#%s" href="%s#%s" />
¶",
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
obj.tags.segment_anchor_tag,
- obj.node.obj_cite_number,
+ obj.node.object_number,
);
}
}