You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plugin uses querySelector(contentSelector) to get the content. By default, contentSelector is 'body' (PageParser.js)
We want to exclude all texts that are not in a top content-collection. In some setups there are more than one content-collections (e.g. one for "header", one for "main"). This leads to the problem, that something like "body > .neos-contentcollection" does not work. It only returns the first content-collection instead of all,
I would like to have PageParser to instead use querySelectorAll for this purpose. Would this break stuff? Should there be an option?
The text was updated successfully, but these errors were encountered:
The plugin uses querySelector(contentSelector) to get the content. By default, contentSelector is 'body' (PageParser.js)
We want to exclude all texts that are not in a top content-collection. In some setups there are more than one content-collections (e.g. one for "header", one for "main"). This leads to the problem, that something like "body > .neos-contentcollection" does not work. It only returns the first content-collection instead of all,
I would like to have PageParser to instead use querySelectorAll for this purpose. Would this break stuff? Should there be an option?
The text was updated successfully, but these errors were encountered: