aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/default_regex.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-12-18 10:55:24 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2020-02-08 19:49:11 -0500
commited17763e72b7a9508432e341cb4aca1b2186d329 (patch)
treea2f98dcd0dbc309a840d6575a49518bf5cc9b5a5 /org/default_regex.org
parentdmd releaseMode results in runtime errors (diff)
cosmetic primarily "format"
Diffstat (limited to 'org/default_regex.org')
-rw-r--r--org/default_regex.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/org/default_regex.org b/org/default_regex.org
index bdd7863..3dd9cd1 100644
--- a/org/default_regex.org
+++ b/org/default_regex.org
@@ -108,7 +108,7 @@ static comment = ctRegex!(`^%+ `);
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");
#+END_SRC