1.1.1 • Published 11 years ago
typographic-apostrophes v1.1.1
typographic-apostrophes
Micro module to help eliminate one of the bad typewriter habits.
Install
npm install --save typographic-apostrophesUsage
Use typographic apostrophes in contractions and for possessive case. This module don't cover posessive plurals, because it’s impossible to distinguish it from single closing quote.
That's why I created typographic-apostrophes-for-possessive-plurals, but it can be used safely only if there are zero closing quotes in the input; this can be achieved by typographic-quotes. That’s why for ideal result you should use all three modules in the chain: apostrophes → quotes → apostrophes-for-possessive-plurals (order is important).
var apostrophes = require('typographic-apostrophes');
apostrophes(`I'm looking forward`);        // I’m looking forward
apostrophes(`Don't do it!`);               // Don’t do it!
apostrophes(`as in the eagle's feathers`); // as in the eagle’s feathers
apostrophes(`in one month's time`);        // in one month’s time
apostrophes(`'60s and '80s`);              // ’60s and ’80s
apostrophes(`rock'n'roll`);                // rock’n’roll
apostrophes(`rock 'n' roll`);              // rock ’n’ rollReal world examples
Check complex usage with real world examples in typography playground.
License
MIT © Vladimir Starkov