From e1cec74bdc11a3476d77b9fb5f71c8ea48e64079 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 6 Dec 2019 14:57:05 -0500 Subject: checks on markup: yaml headers & reading images --- src/doc_reform/meta/conf_make_meta_yaml.d | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/doc_reform/meta/conf_make_meta_yaml.d') diff --git a/src/doc_reform/meta/conf_make_meta_yaml.d b/src/doc_reform/meta/conf_make_meta_yaml.d index 3d39471..a01a025 100644 --- a/src/doc_reform/meta/conf_make_meta_yaml.d +++ b/src/doc_reform/meta/conf_make_meta_yaml.d @@ -822,14 +822,13 @@ static template docHeaderMakeAndMetaTupYamlExtractAndConvertToStruct() { M _manifested, ) { Node _yaml_root; - if (header_src.match(rgx.yaml_header_meta_title)) { - try { - _yaml_root = Loader.fromString(header_src).load(); - } catch { - import std.stdio; - writeln("ERROR failed to read document header, not parsed as yaml"); - } + try { + _yaml_root = Loader.fromString(header_src).load(); + } catch { + import std.stdio; + writeln("ERROR failed to read document header, not parsed as yaml"); } + // need test for _yaml_root content auto _header_and_make_and_meta_struct = contentYAMLtoSpineStruct!()(_make_and_meta_struct, _yaml_root, _manifested, "header"); return _header_and_make_and_meta_struct; -- cgit v1.2.3