metalsmith-typography [](https://travis-ci.org/algenon/metalsmith-typography)
March 31, 2015 · View on GitHub
A Metalsmith plugin to enhance typography in HTML — abbreviations, quotes and dashes, non-breaking spaces after prepositions. Based on Richtypo.js.
Installation
$ npm install metalsmith-typography
CLI Usage
Install via npm and then add the metalsmith-typography key to your metalsmith.json plugins:
{
"plugins": {
"metalsmith-typography": {
"lang": "en"
}
}
}
Javascript Usage
Pass options to the typography plugin and pass it to Metalsmith with the use method:
var typography = require('metalsmith-typography');
metalsmith.use(typography({
lang: "en"
}));
Call it after the metalsmith-markdown plugin, so that HTML files are available.
Options
lang determines which language to use. en and ru supported, en is the default.
rules is an array of typographic rules to apply. Default is
['save_tags', 'cleanup_before', 'lite', 'spaces_lite', 'spaces', 'quotes', 'abbrs', 'cleanup_after', 'restore_tags']
See Richtypo.js documentation for the list of available rules.
License
MIT