diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-01-14 09:42:04 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 4b12f27165efb0c7b38ae9338c6ec3cc42b4f6b5 (patch) | |
tree | 8b9b6e3b6b53ac4fad0b8ab9e9ceb38425576df9 /org/sdp.org | |
parent | 0.11.0 improved message passing, using templates (diff) |
insert file list: gather & make available a list of insert files (if any)
Diffstat (limited to 'org/sdp.org')
-rw-r--r-- | org/sdp.org | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/org/sdp.org b/org/sdp.org index 54a36a3..c6d0ad1 100644 --- a/org/sdp.org +++ b/org/sdp.org @@ -405,6 +405,7 @@ auto read_in_file_string = raw.sourceContent(fn_src); auto header_and_body_tuple = raw.sourceContentSplitIntoHeaderAndBody(read_in_file_string, fn_src); auto header = header_and_body_tuple[0]; auto content_body = header_and_body_tuple[1]; +auto _file_insert_list = header_and_body_tuple[2]; debug(header_and_body) { writeln(header); writeln(header_and_body_tuple.length); @@ -501,6 +502,10 @@ struct DocumentMatters { string _k = fn_src; return _k; } + auto file_insert_list() { + string[] _k = _file_insert_list; + return _k; + } auto opt_action_bool() { bool[string] _k = _opt_action_bool; return _k; |