diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-05 12:25:22 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-17 16:59:54 -0400 |
commit | ca57754c411a97cf9b09cd74473099451bcf1248 (patch) | |
tree | ea9f7abb9d519c299754466df225ef9ae8cdac89 /org/output_xmls.org | |
parent | meta_abstraction some local renaming (diff) |
url encoding
Diffstat (limited to 'org/output_xmls.org')
-rw-r--r-- | org/output_xmls.org | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org/output_xmls.org b/org/output_xmls.org index 33995bd..21f4876 100644 --- a/org/output_xmls.org +++ b/org/output_xmls.org @@ -473,7 +473,11 @@ auto inline_links(O,M)( if (obj.has.inline_links) { if (obj.metainfo.is_a != "code") { _txt = replaceAll!(m => - m[1] ~ "┤" ~ to!string((obj.stow.link[m["num"].to!ulong])).encode ~ "├" + m[1] ~ "┤" + ~ (replaceAll!(n => + n["type"] ~ n["path"] ~ (n["file"].encodeComponent) + )((obj.stow.link[m["num"].to!ulong]).to!string, rgx.uri_identify_components)) + ~ "├" )(_txt, rgx.inline_link_number_only); } if ((_txt.match(rgx.mark_internal_site_lnk)) |