Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.23 KB

readme.md

File metadata and controls

52 lines (33 loc) · 1.23 KB

metalsmith-remove-empty-tags

Build Status

Remove empty HTML tags from your metalsmith template files.

⚠️ Not fully tested or production ready. Use at your own risk. There are a few items on the roadmap to 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.

Install

$ npm install --save metalsmith-remove-empty-tags

Usage

var Metalsmith = require("metalsmith");
var removeEmptyTags = require("metalsmith-remove-empty-tags");

Metalsmith(__dirname)
  // ... state when html files are available
  .use(removeEmptyTags(['p']))
  // ..

API

removeEmptyTags(tags)

tags

Type: array

An array of HTML tags to look for.

TODO

  • 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

License

MIT © Michael Wuergler