---
name: filter styles
in: "p{color:red}. Test"
style_filtered_html: "<p>Test</p>"
---
name: filter classes
in: "p(myclass). Test"
class_filtered_html: "<p>Test</p>"
---
name: filter ids
in: "p(#myid). Test"
id_filtered_html: "<p>Test</p>"
---
name: correct application of double quote entity when using styles
in: 'p{background: #white url("../chunky_bacon.jpg")}. The quick brown "cartoon" fox jumps over the lazy dog'
html: '<p style="background: #white url("../chunky_bacon.jpg");">The quick brown “cartoon” fox jumps over the lazy dog</p>'
---
name: correct application of single quote entity when using styles
in: "p{background: #white url('../chunky_bacon.jpg')}. The quick brown 'cartoon' fox jumps over the lazy dog"
html: '<p style="background: #white url('../chunky_bacon.jpg');">The quick brown ‘cartoon’ fox jumps over the lazy dog</p>'