Remove empty HTML tags from your metalsmith template files.
v1.0
,
but I am not sure when I will get around to this, so Pull Requests are welcome
to help extend test coverage and close some issues.
$ npm install --save metalsmith-remove-empty-tags
var Metalsmith = require("metalsmith");
var removeEmptyTags = require("metalsmith-remove-empty-tags");
Metalsmith(__dirname)
// ... state when html files are available
.use(removeEmptyTags(['p']))
// ..
Type: array
An array of HTML tags to look for.
- supply tag names to remove
- remove all empty tags by default (if no tags are supplied)
- option to ignore files
- option to ignore tags with certain classes
- better test coverage
MIT © Michael Wuergler