Skip to content
This repository was archived by the owner on Mar 17, 2022. It is now read-only.

nalgeon/metalsmith-typography

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metalsmith-typography Build Status

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

About

A Metalsmith plugin to enhance typography

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors