#metalsmith-word-count
Metalsmith plugin to compute wordcount / average reading time of all paragraphs in a html file.
Based on assemble-middleware-wordcount by Jon Schlinkert
Extracted from majodev.github.io.
As part the my note "Extracting libs from a node.js project: Publishing my metalsmith plugins".
npm install --save metalsmith-word-count
var Metalsmith = require("metalsmith");
var wordcount = require("metalsmith-word-count");
Metalsmith(__dirname)
// html files are available (e.g. state when markdown was compiled)
.use(wordcount())
// ...
Should also work in similar fashion with the metalsmith.json
counterpart.
wordcount
accepts an hash to provide a few customization options.
String
: Name of the key that will store the word count in a file's metadata.
default: wordCount
String
: Name of the key that will store the estimated reading time in a file's metadata.
default: readingTime
int
: How fast one normally reads, see http://onforb.es/1crk3KF
default: 300
bool
: If readingTime should be outputted in seconds
default: false
bool
: If readingTime should be returned as raw integer (in minutes or seconds)
default: false
Metalsmith(__dirname)
// html files are available (e.g. state when markdown was compiled)
.use(wordcount({
metaKeyCount: "wordCount",
metaKeyReadingTime: "readingTime",
speed: 300,
seconds: false,
raw: false
}))
// ...
File an issue or fork 'n' fix and send a pull request.
(c) 2014 Mario Ranftl
MIT License