diff options
| author | Ralph Amissah <ralph@amissah.com> | 2015-10-06 13:21:37 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2015-10-06 13:21:37 -0400 | 
| commit | baf874b5a76a1be02961e88f31da8fd97c4623f6 (patch) | |
| tree | 95af075763836934a242dbfc2add32afecdaf1fe /lib/sdp/ao_rgx.d | |
| parent | sdp.org minor (diff) | |
dmd compiler warnings fixed
Diffstat (limited to 'lib/sdp/ao_rgx.d')
| -rw-r--r-- | lib/sdp/ao_rgx.d | 22 | 
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/sdp/ao_rgx.d b/lib/sdp/ao_rgx.d index 755ba11..d8df52c 100644 --- a/lib/sdp/ao_rgx.d +++ b/lib/sdp/ao_rgx.d @@ -44,17 +44,17 @@ mixin template RgxInit() {  /*  ** heading & paragraph operators  */ -    static heading                   = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?) `); -    static heading_marker            = ctRegex!(`^:?([A-D1-4])[~]`); -    static heading_title             = ctRegex!(`^:?[A-D1-4][~][a-z0-9_.-]*[?]?\s+(.+?)$`); -    static heading_all               = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?)\s+(.+?)$`); // test, particularly [2] name/hashtag which may or may not be, does this affect title [3] -    static heading_biblio            = ctRegex!(`^:?(1)[~][!](biblio(?:graphy)?|references?)`); -    static heading_glossary          = ctRegex!(`^:?(1)[~][!](glossary)`); -    static para_bullet               = ctRegex!(`^_[*] `); -    static para_bullet_indent        = ctRegex!(`^_([1-9])[*] `); -    static para_indent               = ctRegex!(`^_([1-9]) `); -    static para_indent_hang          = ctRegex!(`^_([0-9])_([0-9]) `); -    static para_attribs              = ctRegex!(`^_(([0-9])(_([0-9]))?|_([1-9])?[*]) `); +    static heading            = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?) `); +    static heading_marker     = ctRegex!(`^:?([A-D1-4])[~]`); +    static heading_title      = ctRegex!(`^:?[A-D1-4][~][a-z0-9_.-]*[?]?\s+(.+?)$`); +    static heading_all        = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?)\s+(.+?)$`); // test, particularly [2] name/hashtag which may or may not be, does this affect title [3] +    static heading_biblio     = ctRegex!(`^:?(1)[~][!](biblio(?:graphy)?|references?)`); +    static heading_glossary   = ctRegex!(`^:?(1)[~][!](glossary)`); +    static para_bullet        = ctRegex!(`^_[*] `); +    static para_bullet_indent = ctRegex!(`^_([1-9])[*] `); +    static para_indent        = ctRegex!(`^_([1-9]) `); +    static para_indent_hang   = ctRegex!(`^_([0-9])_([0-9]) `); +    static para_attribs       = ctRegex!(`^_(([0-9])(_([0-9]))?|_([1-9])?[*]) `);  /*  ** blocked markup tics  */  | 
