1.4.1 • Published 5 years ago
metalsmith-excerpts v1.4.1
metalsmith-excerpts
A Metalsmith plugin to extract an excerpt from HTML files.
The excerpt is scraped from first paragraph (<p> tag) of the rendered HTML.
If a file already has an excerpt value, that value will be returned.
Installation
$ npm install metalsmith-excerptsCLI Usage
Install via npm and then add the metalsmith-excerpts key to your metalsmith.json plugin, like so:
{
"plugins": {
"metalsmith-excerpts": true
}
}Javascript Usage
var excerpts = require('metalsmith-excerpts');
metalsmith.use(excerpts());If you pass a multipleFormats: true option to the plugin, it will put store
an excerpt object like { html: '...', text: '...' };
License
MIT