metalsmith-hyphenate

1.1.5 • Public • Published

metalsmith-hyphenate

Build Status Code Climate Greenkeeper badge

A Metalsmith plugin to hyphenate words. It’s based on Bram Stein’s Hypher hyphenation engine

Installation

$ npm install metalsmith-hyphenate

Usage

The metalsmith-hyphenate work on the HTML files. So, insert this plugin in the pipeline where HTML files are generated; commonly after metalsmith-templates.

CLI

Install via npm and then add the metalsmith-hyphenate to your metalsmith.json.

{
  "plugins": {
    "metalsmith-hyphenate": {
      "elements": ["p", "blockquote"]
    }
  }
}

JavaScript

Pass options to the hyphenate plugin and pass it to Metalsmith with the use method:

var hyphenate = require('metalsmith-hyphenate');
 
metalsmith.use(hyphenate({
  "elements": ["p", "blockquote"],
  "langModule": "hyphenation.de",
  "ignore": ["archives/*"] // All the files inside 'archive' will not be hyphenated
}));

Options

  • elements - (Array) HTML elements which will be hyphenated. Default is ['p', 'li', 'ol']
  • langModule - (String) Hypher language rules to be used for hyphenation. Default is 'hyphenation.en-us'. You need to install manually — npm install <language-module> – if you are going to use any language rule other than the default.
  • ignore - (Array | String) You can use glob patterns to ignore some files.

Disable hyphenation on specific elements

Hyphenation can be disabled on an element by annotating the element or any of its ancestors with data-hyphenate="false".

<p data-hyphenate="false">There now is your insular city of the Manhattoes, belted round by wharves as Indian isles by coral reefs—commerce surrounds it with her surf.</p>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.5
    1
    • latest

Version History

Package Sidebar

Install

npm i metalsmith-hyphenate

Weekly Downloads

2

Version

1.1.5

License

MIT

Unpacked Size

8.45 kB

Total Files

4

Last publish

Collaborators

  • saneef