aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/meta/metadoc_from_src.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-12-07 19:37:28 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2020-01-13 16:06:43 -0500
commit1b99fbe19db4f49523b64003d629766274f2d2e8 (patch)
treeee0c749ce7efabc9831610ef1b9db7a9cb3da33b /src/doc_reform/meta/metadoc_from_src.d
parentchecks on markup: yaml headers & reading images (diff)
metaverse, remove newline after endnote
- change to internal representation, minor
Diffstat (limited to 'src/doc_reform/meta/metadoc_from_src.d')
-rw-r--r--src/doc_reform/meta/metadoc_from_src.d8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc_reform/meta/metadoc_from_src.d b/src/doc_reform/meta/metadoc_from_src.d
index 0e6c38e..5e61237 100644
--- a/src/doc_reform/meta/metadoc_from_src.d
+++ b/src/doc_reform/meta/metadoc_from_src.d
@@ -4357,7 +4357,7 @@ template docAbstraction() {
obj_txt_out ~= n.hit.to!string.replaceFirst(
rgx.inline_al_delimiter_open_symbol_star,
(mkup.en_a_o ~ replicate(asterisks_, n_foot_sp_asterisk) ~ " ")
- ) ~ "\n";
+ );
} else if (n.hit.to!string.match(rgx.inline_al_delimiter_open_symbol_plus)) {
flg_notes_plus = true;
++n_foot_sp_plus;
@@ -4366,7 +4366,7 @@ template docAbstraction() {
obj_txt_out ~= n.hit.to!string.replaceFirst(
rgx.inline_al_delimiter_open_symbol_plus,
(mkup.en_a_o ~ replicate(plus_, n_foot_sp_plus) ~ " ")
- ) ~ "\n";
+ );
} else if (n.hit.to!string.match(rgx.inline_al_delimiter_open_regular)) {
flg_notes_reg = true;
++n_foot_reg;
@@ -4374,9 +4374,9 @@ template docAbstraction() {
obj_txt_out ~= n.hit.to!string.replaceFirst(
rgx.inline_al_delimiter_open_regular,
(mkup.en_a_o ~ n_foot.to!string ~ " ")
- ) ~ "\n";
+ );
} else {
- obj_txt_out ~= n.hit.to!string ~ "\n";
+ obj_txt_out ~= n.hit.to!string;
}
}
}