diff options
Diffstat (limited to 'src/sdp')
| -rw-r--r-- | src/sdp/output_hub.d | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/src/sdp/output_hub.d b/src/sdp/output_hub.d index 16fc120..f17a007 100644 --- a/src/sdp/output_hub.d +++ b/src/sdp/output_hub.d @@ -3,7 +3,35 @@    check & generate output types requested  +/  template outputHub() { +  private import +    std.regex, +    std.algorithm, +    std.array, +    std.container, +    std.exception, +    std.getopt, +    std.json, +    std.process, +    std.stdio, +    std.file, +    std.path, +    std.range, +    std.regex, +    std.string, +    std.traits, +    std.typecons, +    std.uni, +    std.utf, +    ao_defaults, +    output_epub, +    output_html, +    output_xhtmls, +    source_sisupod; +  import +    ao_rgx, +    output_xhtmls;    void outputHub(C,D)(C contents, D doc_matters) { +    mixin SiSUrgxInit;      auto rgx = Rgx();      if (doc_matters.opt_action_bool["source"]) {        /+ mixin outputSource; +/ | 
