diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-02-14 12:03:52 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-02-14 13:35:33 -0400 |
commit | d642e41ed5459b86a55b0db274a93adb2f7d907a (patch) | |
tree | 8652a41fc631ad765cb07ae40fd1a1c08a2f6ace /src/data/composite | |
parent | 9b13c1eb3766aeec4be518a755b209d6e0cdfd42 (diff) |
data: detect & report miscapitalization in commentary heading
Diffstat (limited to 'src/data/composite')
-rw-r--r-- | src/data/composite/wiki-data/withParsedCommentaryEntries.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/composite/wiki-data/withParsedCommentaryEntries.js b/src/data/composite/wiki-data/withParsedCommentaryEntries.js index edfc9e3c..f0404a5d 100644 --- a/src/data/composite/wiki-data/withParsedCommentaryEntries.js +++ b/src/data/composite/wiki-data/withParsedCommentaryEntries.js @@ -2,7 +2,7 @@ import {input, templateCompositeFrom} from '#composite'; import find from '#find'; import {stitchArrays} from '#sugar'; import {isCommentary} from '#validators'; -import {commentaryRegex} from '#wiki-data'; +import {commentaryRegexCaseSensitive} from '#wiki-data'; import { fillMissingListItems, @@ -30,7 +30,7 @@ export default templateCompositeFrom({ [input('from')]: commentaryText, }) => continuation({ ['#rawMatches']: - Array.from(commentaryText.matchAll(commentaryRegex)), + Array.from(commentaryText.matchAll(commentaryRegexCaseSensitive)), }), }, |