diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-08-21 12:18:02 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-08-22 11:59:51 -0400 |
commit | 8525eb4bf305824d55558705175d4cc9ed5d37c2 (patch) | |
tree | 67ca0daa82a58ef5cbda9b9a1f2ce14f745af8b5 /org/out_xmls.org | |
parent | config, clean up and make a bit more consistent (diff) |
metaverse parallel processing reproducability
- html xhtml issue with tags
- epub issue with title (skipped) in OEBPS/toc.ncx
Diffstat (limited to 'org/out_xmls.org')
-rw-r--r-- | org/out_xmls.org | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/org/out_xmls.org b/org/out_xmls.org index 12cd0dc..1158ff7 100644 --- a/org/out_xmls.org +++ b/org/out_xmls.org @@ -203,10 +203,9 @@ import #+NAME: xhtml_format_objects_4 #+BEGIN_SRC d @safe string _xhtml_anchor_tags(O)(O obj) { - const(string[]) anchor_tags = obj.tags.anchor_tags; string tags=""; - if (anchor_tags.length > 0) { - foreach (tag; anchor_tags) { + if (obj.tags.anchor_tags.length > 0) { + foreach (tag; obj.tags.anchor_tags) { if (!(tag.empty)) { tags ~= "<a name=\"" ~ tag ~ "\"></a>"; } @@ -919,7 +918,9 @@ import </div>┃", _horizontal_rule, obj.metainfo.identifier, - (doc_matters.opt.action.ocn_off) ? "" : ((obj.metainfo.object_number.empty) ? "" : obj.metainfo.identifier), + (doc_matters.opt.action.ocn_off) + ? "" : ((obj.metainfo.object_number.empty) + ? "" : obj.metainfo.identifier), obj.metainfo.heading_lev_markup, obj.metainfo.is_a, obj.metainfo.identifier, |