Automattic / juice

Juice inlines CSS stylesheets into your HTML source.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How I can remove class attribute?

kerosan opened this issue · comments

input:

<style>
  .d {
    color:red
  }
</style>
<div class='d'>123</div>

output:

<div class="d" style="color: red;">123</div>

How I can remove class attribute? class="d"

consider using https://www.npmjs.com/package/declassify which was created for everyone asking a similar question on this repo