diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-07-02 00:03:22 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-04 14:48:18 -0400 |
commit | b7d9e9428b21fb7e17cead0e4c206722c1617b52 (patch) | |
tree | 7bffc230b82665f44107feeba6e2dc5d7ce56c99 /src/sdp.d | |
parent | associated array instead of json (diff) |
sdp.org tidy
Diffstat (limited to 'src/sdp.d')
-rwxr-xr-x | src/sdp.d | 21 |
1 files changed, 8 insertions, 13 deletions
@@ -3,43 +3,39 @@ sdp sdp.d +/ -/+ sdp sisu document parser http://sisudoc.org +/ +/+ sdp: sisu document parser, see http://sisudoc.org +/ import compile_time_info, // sdp/compile_time_info.d ao_abstract_doc_source, // sdp/ao_abstract_doc_source.d + ao_ansi_colors, // sdp/ao_ansi_colors.d ao_defaults, // sdp/ao_defaults.d ao_header_extract, // sdp/ao_header_extract.d ao_header_extract_native, // sdp/ao_header_extract_native.d ao_header_extract_sdlang, // sdp/ao_header_extract_sdlang.d + ao_output_debugs, // sdp/ao_output_debugs.d ao_read_config_files, // sdp/ao_read_config_files.d ao_read_source_files, // sdp/ao_read_source_files.d - ao_output_debugs, // sdp/ao_output_debugs.d ao_rgx, // sdp/ao_rgx.d - ao_ansi_colors, // sdp/ao_ansi_colors.d output_hub; // output_hub.d - // std.conv; /+ sdlang http://sdlang.org +/ import sdlang; // sdlang.d -/+ sdp sisu document parser +/ +/+ std +/ private import - std.getopt, - std.process, - std.stdio, std.algorithm, std.array, std.container, std.exception, - std.file, + std.getopt, std.json, - // std.path, + std.process, + std.stdio, + std.file, std.range, std.regex, - // std.stdio, std.string, std.traits, std.typecons, std.utf, - // std.variant, std.conv : to; struct SDPoutput { auto hub(S)( @@ -96,7 +92,6 @@ mixin(import("version.txt")); mixin CompileTimeInfo; mixin RgxInit; void main(string[] args) { - mixin SiSUregisters; mixin SiSUheaderExtractHub; mixin SiSUheaderExtractSDLang; |