pug-php/pug-filter-less

View on GitHub
examples/basic.html

Summary

Maintainability
Test Coverage
<head>
  <style type="text/css">
    p {
      width: 200px;
      color: red;
    }
    p a {
      color: yellow;
    }
    p em {
      color: yellow;
    }
  </style>
</head>
<body>
  <p>
    I'm red but my links are <a>yellow</a> and my quotes are <em>yellow</em>
  </p>
</body>