diff options
| author | Ralph Amissah <ralph@amissah.com> | 2017-01-27 20:58:33 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 | 
| commit | bc6971c1d19d4dcb80f872de6aa1f39a1584b738 (patch) | |
| tree | da2364eb1a4166fd5bab76c06a33d52d61956139 /src/sdp | |
| parent | header body insert_file_list, template (diff) | |
read src file and split into head and body, template
Diffstat (limited to 'src/sdp')
| -rw-r--r-- | src/sdp/ao_read_source_files.d | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/src/sdp/ao_read_source_files.d b/src/sdp/ao_read_source_files.d index f25ed7e..c7616a2 100644 --- a/src/sdp/ao_read_source_files.d +++ b/src/sdp/ao_read_source_files.d @@ -5,12 +5,25 @@  +/  template SiSUmarkupRaw() {    private import +    ao_rgx; +  private import +    std.array,      std.exception, +    std.path,      std.regex,      std.stdio, +    std.traits, +    std.typecons,      std.utf,      std.conv : to; +  mixin SiSUrgxInit;    auto rgx = Rgx(); +  auto rawsrc = MarkupRaw(); +  auto SiSUmarkupRaw(Fn)(Fn fn_src) { +    auto _0_header_1_body_content_2_insert_filelist_tuple = +      rawsrc.sourceContentSplitIntoHeaderAndBody(rawsrc.sourceContent(fn_src), fn_src); +    return _0_header_1_body_content_2_insert_filelist_tuple; +  }    struct MarkupRaw {      final sourceContent(in string fn_src) {        auto raw = MarkupRawUnit(); | 
