diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-12-18 10:55:24 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-02-08 19:49:11 -0500 |
commit | ed17763e72b7a9508432e341cb4aca1b2186d329 (patch) | |
tree | a2f98dcd0dbc309a840d6575a49518bf5cc9b5a5 /src/doc_reform/meta/rgx.d | |
parent | dmd releaseMode results in runtime errors (diff) |
cosmetic primarily "format"
Diffstat (limited to 'src/doc_reform/meta/rgx.d')
-rw-r--r-- | src/doc_reform/meta/rgx.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc_reform/meta/rgx.d b/src/doc_reform/meta/rgx.d index d08100b..b6d23bf 100644 --- a/src/doc_reform/meta/rgx.d +++ b/src/doc_reform/meta/rgx.d @@ -44,7 +44,7 @@ static template spineRgxInit() { static variable_doc_title = ctRegex!(`@title`); static variable_doc_author = ctRegex!(`@author|@creator`); static raw_author_munge = ctRegex!(`(?P<last>\S.+?),\s+(?P<first>.+)`,"i"); - static yaml_header_meta_title = ctRegex!(`^\s*(?:title\s*:\s*(?:"?\w|$))`, "m"); + static yaml_header_meta_title = ctRegex!(`^\s*title\s*:\s*(?:"?\w|$)`, "m"); static yaml_config = ctRegex!(`^[a-z]+\s*:\s*(?:"?\w|$)`, "m"); /+ heading & paragraph operators +/ static heading_a = ctRegex!(`^:?[A][~] `, "m"); |