aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ocda_functions.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/ocda_functions.org')
-rw-r--r--org/ocda_functions.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/org/ocda_functions.org b/org/ocda_functions.org
index 16de3f0..0b997b7 100644
--- a/org/ocda_functions.org
+++ b/org/ocda_functions.org
@@ -4460,7 +4460,7 @@ ST_the_section build_the_blurb_section(Opt) (
if (obj.has.inline_notes_reg) {
if ((obj.text).matchFirst(rgx.inline_notes_al_gen)) {
foreach (m; (obj.text).matchAll(rgx.inline_notes_al_regular_number_note)) {
- _notes ~= "\n\n" ~ m["num"] ~ ". " ~ m["note"] ~ " ≫" ~ obj.metainfo.ocn.to!string;
+ _notes ~= "\n\n" ~ m["num"] ~ ". " ~ m["note"];
notes_[(m["num"])]["ocn"] = obj.metainfo.ocn.to!string;
}
}
@@ -4474,7 +4474,7 @@ ST_the_section build_the_blurb_section(Opt) (
foreach (ref obj; the_document_endnotes_section) {
auto matches = (obj.text).matchAll(rgx.endnote_section_note);
foreach (m; matches) {
- obj.text = m.hit ~ " ≫" ~ notes_[(m["notenumber"])]["ocn"];
+ obj.metainfo.parent_ocn = notes_[(m["notenumber"])]["ocn"].to!int;
}
}
foreach (ref obj; the_document_endnotes_section) {