diff options
Diffstat (limited to 'src/data/composite')
4 files changed, 5 insertions, 5 deletions
diff --git a/src/data/composite/things/content/withAnnotationParts.js b/src/data/composite/things/content/withAnnotationParts.js index 290a7292..5eb8e3d5 100644 --- a/src/data/composite/things/content/withAnnotationParts.js +++ b/src/data/composite/things/content/withAnnotationParts.js @@ -1,5 +1,5 @@ import {input, templateCompositeFrom} from '#composite'; -import {parseInput} from '#replacer'; +import {parseContentNodes} from '#replacer'; import {transposeArrays} from '#sugar'; import {is} from '#validators'; diff --git a/src/data/composite/things/content/withSourceText.js b/src/data/composite/things/content/withSourceText.js index 487b3763..e0cd2f15 100644 --- a/src/data/composite/things/content/withSourceText.js +++ b/src/data/composite/things/content/withSourceText.js @@ -1,5 +1,5 @@ import {input, templateCompositeFrom} from '#composite'; -import {parseInput} from '#replacer'; +import {parseContentNodes} from '#replacer'; import {raiseOutputWithoutDependency} from '#composite/control-flow'; diff --git a/src/data/composite/things/content/withSourceURLs.js b/src/data/composite/things/content/withSourceURLs.js index 7c7b0ab2..263eb5f6 100644 --- a/src/data/composite/things/content/withSourceURLs.js +++ b/src/data/composite/things/content/withSourceURLs.js @@ -1,5 +1,5 @@ import {input, templateCompositeFrom} from '#composite'; -import {parseInput} from '#replacer'; +import {parseContentNodes} from '#replacer'; import {raiseOutputWithoutDependency} from '#composite/control-flow'; import {withFilteredList, withMappedList} from '#composite/data'; 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), }), }, ], |