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/composite/wiki-data/withContentNodes.js | |
parent | 2616ee8b666b0449131a45beafbbe69d152c563f (diff) |
replacer: parseInput -> parseContentNodes
Diffstat (limited to 'src/data/composite/wiki-data/withContentNodes.js')
-rw-r--r-- | src/data/composite/wiki-data/withContentNodes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/composite/wiki-data/withContentNodes.js b/src/data/composite/wiki-data/withContentNodes.js index 25352020..d014d43b 100644 --- a/src/data/composite/wiki-data/withContentNodes.js +++ b/src/data/composite/wiki-data/withContentNodes.js @@ -1,5 +1,5 @@ import {input, templateCompositeFrom} from '#composite'; -import {parseInput} from '#replacer'; +import {parseContentNodes} from '#replacer'; export default templateCompositeFrom({ annotation: `withContentNodes`, @@ -18,7 +18,7 @@ export default templateCompositeFrom({ [input('from')]: string, }) => continuation({ ['#contentNodes']: - parseInput(string), + parseContentNodes(string), }), }, ], |