diff options
Diffstat (limited to 'src/sisudoc/meta/conf_make_meta_yaml.d')
-rw-r--r-- | src/sisudoc/meta/conf_make_meta_yaml.d | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/sisudoc/meta/conf_make_meta_yaml.d b/src/sisudoc/meta/conf_make_meta_yaml.d index ac97a21..5712bcf 100644 --- a/src/sisudoc/meta/conf_make_meta_yaml.d +++ b/src/sisudoc/meta/conf_make_meta_yaml.d @@ -698,7 +698,17 @@ template contentYAMLtoSpineStruct() { char[][] __match_footer_array = (cast(char[]) _yaml["make"]["footer"].get!string) .split(rgx.make_heading_delimiter); - _struct_composite.make_str.footer = __match_footer_array.to!(string[]); + foreach(string hbt; __match_footer_array.to!(string[])) { + _struct_composite.make_str.footer ~= url_markup(hbt); + } + } else if ("footer" in _yaml["make"] + && _yaml["make"]["footer"].type.string + && _yaml["make"]["footer"].tag.match(rgx_y.yaml_tag_is_seq) + ) { + _struct_composite.make_str.footer = []; + foreach(string hbt; _yaml["make"]["footer"]) { + _struct_composite.make_str.footer ~= url_markup(hbt); + } } if ("headings" in _yaml["make"] && _yaml["make"]["headings"].type.string |