dancrew32 / marcel

The PHP 5.4 MVC with Shoes On: ActiveRecord, User/Session, Generators, SCSS, (Twitter Bootstrap) Integration, Workers, Cron Management, Image Manipulation, Caching, Git Management, Mail & Mail Parsing, OCR, Scraping, Selenium, Mustache, Markdown, Phone & Text Messaging, WebSockets, BitTorrent and much more!
5 stars 0 forks source link

html/stylesheet to craigslist template converter #126

Open dancrew32 opened 11 years ago

dancrew32 commented 11 years ago

take <style> and <link>'d stylesheets attempt to inline them in html with actual attributes per craigslists guidelines.

e.g.:

<style>
.foo {
background-color: #000;
color: #000;
float: left;
width: 200px;
border-radius:3px;
}
</style>
<div class="foo">Foo</div>

To:

<table>
  <tr>
     <td class="foo" 
      width="200"
      backgroundColor="#000000"
      color="#000000"
      style="border-radius:3px">Foo</td>
  </tr>
</table>