diff options
| -rw-r--r-- | org/metaverse.org | 8 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_from_src.d | 8 | 
2 files changed, 8 insertions, 8 deletions
| diff --git a/org/metaverse.org b/org/metaverse.org index 644bc0a..500b6ac 100644 --- a/org/metaverse.org +++ b/org/metaverse.org @@ -5432,7 +5432,7 @@ static struct ObjInlineMarkupMunge {              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; @@ -5441,7 +5441,7 @@ static struct ObjInlineMarkupMunge {              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; @@ -5449,9 +5449,9 @@ static struct ObjInlineMarkupMunge {              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;            }          }        } 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;              }            }          } | 
