json データのレールで strip_tags を使用して html タグを削除すると、間違ったデータが返されます。
the original data is: "<p><em><span style=\"font-size: 96px; \">test</span></em></p>"
data.to_json is: "\"<p><em><span style=\\\"font-size: 96px; \\\">\\u9ed1\\u4f53\\u5b57\\u54e6</span></em></p>\""
the stripped data that after strip_tags is: "\""
理由やその他の解決策を誰が教えてくれますか?