Hello Makers…I have a small issue I need help with.
I’m using the Aggregator Module to create a JSON bundle. It works fine, but how can I add a Carage Return or a New Line so that the JSON is not all on one one like this:
{ "product_feature": "NSK2SUITDESKTOP" },{ "product_feature": "NSK2DYNODESKTOP" },{ "product_feature": "NSK2MKVII" }
I want it to look like this:
{ "product_feature": "NSK2SUITDESKTOP" },
{ "product_feature": "NSK2DYNODESKTOP" },
{ "product_feature": "NSK2MKVII" }
The problem with the Aggregator Module is that if I put a NewLine or Return in the Text Area, then it will look like this:
{ "product_feature": "NSK2SUITDESKTOP" }
,{ "product_feature": "NSK2DYNODESKTOP" }
,{ "product_feature": "NSK2MKVII" }
Also the module Separator doesn’t allow for NewLine or Return…Any help would be appreciated.