mastodon.sdf.org is part of the decentralized social network powered by Mastodon.
"I appreciate SDF but it's a general-purpose server and the name doesn't make it obvious that it's about art." - Eugen Rochko

Administered by:

Server stats:

2.3K
active users

Learn more

argv minus one

I want a program that looks over an document and its stylesheets, and applies the stylesheets' rules as `style` attributes on the HTML elements in the document.

Meaning this:

<html>
<style>p:first-child { margin-top: 0 }</style>
<p>First paragraph</p>
<p>Second paragraph</p>
</html>

Translates into this:

<html>
<p style="margin-top: 0">First paragraph</p>
<p>Second paragraph</p>
</html>

Is that a thing?