From 87d62f48d6c8a2ccf9807f56c23a6ca71d1102e6 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sun, 13 Jan 2019 14:19:04 -0500 Subject: 0.4.3 stow (most) uri/links in array, separate from object text - munge independently - no need to consider special munging of uri with text - uri can easily be munged independently (encoded as need be) --- src/doc_reform/output/xmls.d | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/doc_reform/output/xmls.d') diff --git a/src/doc_reform/output/xmls.d b/src/doc_reform/output/xmls.d index 58cfb4e..41787ae 100644 --- a/src/doc_reform/output/xmls.d +++ b/src/doc_reform/output/xmls.d @@ -5,6 +5,7 @@ template outputXHTMLs() { std.digest.sha, std.file, std.outbuffer, + std.uri, std.zip, std.conv : to; import @@ -121,7 +122,7 @@ template outputXHTMLs() { doc_matters.conf_make_meta.meta.date_modified, doc_matters.src.language, doc_matters.conf_make_meta.meta.rights_copyright, - doc_matters.generator_program.name_and_version, + doc_matters.opt.action.debug_do ? "" : doc_matters.generator_program.name_and_version, doc_matters.generator_program.url_home, ); return o; @@ -350,6 +351,11 @@ template outputXHTMLs() { ) { string seg_lvs; if (obj.has.inline_links) { + if (obj.metainfo.is_a != "code") { + _txt = replaceAll!(hit => + hit[1] ~ "┤" ~ to!string((obj.stow.link[hit[2].to!ulong])).encode ~ "├" + )(_txt, rgx.inline_link_number_only); + } if ((_txt.match(rgx.mark_internal_site_lnk)) && (_xml_type == "scroll")) { // conditions reversed to avoid: gdc compiled program run segfault _txt = _txt.replaceAll( -- cgit v1.2.3