Is this request for a new request or updating an existing feature?
New
What feature would you like?
Move styles that are on custom CSS files and inline them into the HTML.
INPUT
<p class="text">Inlining classes to HTML style attritubute.</p>
.text {
font-size:16px;
line-height: 1.3;
color: #f3ef07;
}
OUTPUT
<p style="font-size:16px; line-height: 1.3; color: #f3ef07;">Inlining classes to HTML style attritubute.</p>
Is this request for a new request or updating an existing feature?
New
What feature would you like?
Move styles that are on custom CSS files and inline them into the HTML.
INPUT
OUTPUT