Looking to generate a unique HTML
code using only inline CSS
.
Here is the initial HTML file:
<div id="highlighted">This is the highlighted text.</div>
Accompanied by this Sass
file:
#highlighted {
background: #ff0;
}
Now, the goal is to convert the output HTML code into inline CSS:
<div id="highlighted" style="background: #ff0;">This is the highlighted text.</div>
Are there any tools, extensions, plugins or perhaps webpack configurations that can help address this challenge?