(Thank you for providing an open source solution of Rich Snippets) ## File [breadcrumbs.phtml#L36](https://github.com/outeredge/magento-structured-data-module/blob/fdffff8f73da9e0a76ae5d18094951ef7c4477a2/view/frontend/templates/html/breadcrumbs.phtml#L36) ## Reproduce Create a category and let its name contains `"` or `\`. Output(invalid JSON): ```json { ... "item": { "@id": "", "name": "Some\Category\Name" } ... } ``` ## Expected result `"` or `\` should be escaped to `\"` or `\\`