The following line ([found here](https://github.com/mirceapiturca/Sections/blob/abf74e785cc8357cb35335b18bcb92199e7a2ce2/FAQ/sections/faq.liquid#L138C11-L138C11)) causes the json to include json-parsed HTML in the accepted answer: ` "text": {{ block.settings.content | json }}` I recommend using the following instead: `"text": {{ block.settings.content | strip_html | json }}`
The following line (found here) causes the json to include json-parsed HTML in the accepted answer:
"text": {{ block.settings.content | json }}I recommend using the following instead:
"text": {{ block.settings.content | strip_html | json }}