diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-02 10:19:43 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-06 12:29:07 -0300 |
commit | fd2658db8ba707577488b89be84ccaa4a8e9c607 (patch) | |
tree | 970cd76f9b57f9d9dfeebd404a76d2816c1893dc /src/data/checks.js | |
parent | 2616ee8b666b0449131a45beafbbe69d152c563f (diff) |
replacer: parseInput -> parseContentNodes
Diffstat (limited to 'src/data/checks.js')
-rw-r--r-- | src/data/checks.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/checks.js b/src/data/checks.js index c395f2f0..0bbd044e 100644 --- a/src/data/checks.js +++ b/src/data/checks.js @@ -4,7 +4,7 @@ import {inspect as nodeInspect} from 'node:util'; import {colors, ENABLE_COLOR} from '#cli'; import CacheableObject from '#cacheable-object'; -import {replacerSpec, parseInput} from '#replacer'; +import {replacerSpec, parseContentNodes} from '#replacer'; import {compareArrays, cut, cutStart, empty, getNestedProp, iterateMultiline} from '#sugar'; import Thing from '#thing'; @@ -638,7 +638,7 @@ export function reportContentTextErrors(wikiData, { const findArtistOrAlias = bindFindArtistOrAlias(boundFind); function* processContent(input) { - const nodes = parseInput(input); + const nodes = parseContentNodes(input); for (const node of nodes) { const index = node.i; |