posthtml-richtypo

1.0.2 • Public • Published

PostHTML Richtypo plugin

NPM Deps Build Coverage Standard Code Style Chat

Apply typography rules to text into HTML node

Before:

<p data-richtypo>There are 1000 "rules" to enrich your text</p>

After:

<p data-richtypo>There are 1000 «rules» to&nbsp;enrich your&nbsp;text</p>

Install

npm i posthtml posthtml-richtypo

Usage

const fs = require('fs');
const posthtml = require('posthtml');
const richtypoPlugin = require('posthtml-richtypo');
const {
    quotes,
    sectionSigns,
    shortWords,
} = require('richtypo-rules-ru');
 
posthtml()
    .use(richtypoPlugin({
        attribute: 'data-typo',
        rules: [
            quotes,
            sectionSigns,
            shortWords,
        ],
    }))
    .process(html)
    .then(result => fs.writeFileSync('./after.html', result.html));

Options

{string} attribute to change text into

Default: 'data-richtypo'

{array} rules to apply typography

Default: richtypo-rules-en

Richtypo rules

Contributing

See PostHTML Guidelines and contribution guide.

License MIT

Package Sidebar

Install

npm i posthtml-richtypo

Weekly Downloads

8

Version

1.0.2

License

MIT

Unpacked Size

61.1 kB

Total Files

21

Last publish

Collaborators

  • grawl