diff options
Diffstat (limited to 'org/meta_conf_make_meta.org')
-rw-r--r-- | org/meta_conf_make_meta.org | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/org/meta_conf_make_meta.org b/org/meta_conf_make_meta.org index 7d15135..7c0d9ac 100644 --- a/org/meta_conf_make_meta.org +++ b/org/meta_conf_make_meta.org @@ -14,6 +14,7 @@ #+PROPERTY: header-args+ :results no #+PROPERTY: header-args+ :cache no #+PROPERTY: header-args+ :padline no +#+PROPERTY: header-args+ :mkdirp yes [[./spine.org][spine]] [[./][org/]] * generic @@ -83,7 +84,8 @@ import doc_reform.meta.conf_make_meta_structs; ** struct ConfComposite -#+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_structs.d" +#+HEADER: :tangle "../src/doc_reform/meta/conf_make_meta_structs.d" +#+BEGIN_SRC d <<doc_header_including_copyright_and_license>> module doc_reform.meta.conf_make_meta_structs; <<meta_defaults_template_structs_0>> @@ -397,7 +399,8 @@ JSONValue config_jsonstr = `{ * YAML to spineStruct :module:conf_make_meta:yaml: ** _module template_ -#+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+HEADER: :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+BEGIN_SRC d <<doc_header_including_copyright_and_license>> /++ yaml headers<BR> @@ -1419,7 +1422,8 @@ if ("rights" in _yaml * JSON to spineStruct :module:conf_make_meta:json: ** _module template_ -#+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_json.d" +#+HEADER: :tangle "../src/doc_reform/meta/conf_make_meta_json.d" +#+BEGIN_SRC d <<doc_header_including_copyright_and_license>> /++ json headers<BR> @@ -2087,7 +2091,8 @@ if ("rights" in _json.object) { ** 1. parse Yaml config return spineStruct -#+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+HEADER: :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+BEGIN_SRC d <<doc_header_including_copyright_and_license>> template configParseYAMLreturnSpineStruct() { import dyaml; @@ -2125,7 +2130,8 @@ template configParseYAMLreturnSpineStruct() { ** 2. parse YAML header to +(JSON then)+ Struct -#+BEGIN_SRC d :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+HEADER: :tangle "../src/doc_reform/meta/conf_make_meta_yaml.d" +#+BEGIN_SRC d <<doc_header_including_copyright_and_license>> template docHeaderMakeAndMetaTupYamlExtractAndConvertToStruct() { import |