diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-08-10 06:23:36 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | bdf20b225b1e8c5f5f37e9e9a2c52854c2789b03 (patch) | |
tree | b70e9239aa4d99fcb52398b5a92bf81f459cff8d /src/sdp/meta/rgx.d | |
parent | config (& metadata) instruction tables (diff) |
a couple of small fixes
Diffstat (limited to 'src/sdp/meta/rgx.d')
-rw-r--r-- | src/sdp/meta/rgx.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdp/meta/rgx.d b/src/sdp/meta/rgx.d index 135f923..90cf116 100644 --- a/src/sdp/meta/rgx.d +++ b/src/sdp/meta/rgx.d @@ -39,7 +39,7 @@ static template SiSUrgxInit() { static comments = ctRegex!(`^%+ |^%+$`); /+ header +/ static make_simple_substitutions_rb = ctRegex!(`(?P<substitution>/(?P<match>.+?)/,[ ]*['"](?P<replace>.+?)['"])`); - static make_simple_substitutions_d = ctRegex!(`(?P<substitution>``(?P<match>.+?)``,[ ]*['"](?P<replace>.+?)['"])`); + static make_simple_substitutions_d = ctRegex!(`(?P<substitution>` ~ '`' ~ `(?P<match>.+?)` ~ '`' ~ `,[ ]*['"](?P<replace>.+?)['"])`); /+ header +/ static main_headers = ctRegex!(`^(?:creator|title|rights|date|original|classify|identifier|notes|publisher|make|links)$`, "m"); |