Good night,
How should I parse to json a shop.name including an “&”? Right now, for a store titled “Test & Store”, the code {{ shop.name | json }} returns something like “Test \u0026amp; Store”.
This is causing problems with Google indexation.
One solution would be using “and” instead of “&”, but I am afraid it could cause SEO problems. Another solution, is using the store name hardcoded instead of the code “shop.name | json”, but if in the future there is change in the shop name, it will need to be searched and updated.
Any advice?
Thanks in advance,