Automattic / juice

Juice inlines CSS stylesheets into your HTML source.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to remove the class margin?

psarunkumar opened this issue · comments

Hi,

How to remove the internal style class css?

input:

<style> .pstyle { margin-top: 0cm; margin-right: 0cm; margin-bottom: 6.0pt; margin-left: 18.0pt; font-size: 10.0pt; font-family: "Times New Roman",serif; color: blue; } </style><p class="pstyle" style="margin: 0in;page-break-after: avoid;">Test</p>

Output:
<p class="pstyle" style="margin-top: 0cm; margin-right: 0cm; margin-bottom: 6.0pt; margin-left: 18.0pt; font-size: 10.0pt; font-family: 'Times New Roman',serif; color: blue; margin: 0in; page-break-after: avoid;">Test</p>

Expected Output:
<p class="pstyle" style="font-size: 10.0pt; font-family: 'Times New Roman',serif; color: blue; margin: 0in; page-break-after: avoid;">Test</p>