Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hyphen

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyphen

Franklin M. Liang's hyphenation algorithm, implemented in Javascript.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
638K
increased by50.41%
Maintainers
1
Weekly downloads
 
Created
Source

npm

hy-phen

Franklin M. Liang's hyphenation algorithm

This is a JavaScript implementation of Franklin M. Liang's hyphenation algorithm. It relies on fast programming techniques to reduce execution time. The accuracy of hyphenation results depend on the quality of predefined patterns collections, that are different for every language. This implementation uses patterns collections from the TeX website, http://www.ctan.org/.

var hyphenate = createHyphenator(hyphenationPatternsEnGb);

var initialText = "A certain king had a beautiful garden"
var hyphenatedText = hyphenate(initialText);
// A cer-tain king had a beau-ti-ful garden

###Demo JSFiddle

###Algorithm description PDF Document

###Install

npm install hyphen

or

bower install hyphe

###Configuration

There are a couple of settings you can use to configure hyphenator function:

  • To change the default soft hyphen \u00AD character to something else, use hyphenChar: "-"
var hyphenate = createHyphenator(hyphenationPatternsEnGb, {hyphenChar:'-'})
  • To enable the console output of the hyphenation process, use debug: true
var hyphenate = createHyphenator(hyphenationPatternsEnGb, {debug:true})

###Supported languages

  • Afrikaans
  • Ancient Greek
  • Armenian
  • Assamese
  • Bahasa Indonesia
  • Basque
  • Bengali
  • Bulgarian
  • Catalan
  • Chinese pinyin syllables
  • Church Slavonic
  • Classical Latin
  • Coptic
  • Croatian
  • Czech
  • Danish
  • Dutch
  • English (GB)
  • English (US)
  • Esperanto
  • Estonian
  • Ethiopic
  • Finnish
  • French
  • Friulan
  • Galician
  • Georgian
  • German
  • Gujarati
  • Hindi
  • Hungarian
  • Icelandic Plain
  • Interlingua
  • Irish
  • Italian
  • Kannada
  • Kurmanji
  • Latin
  • Latvian
  • Lithuanian
  • Liturgical Latin
  • Malayalam
  • Marathi
  • Modern Monotonic
  • Modern Polytonic
  • Mongolian
  • Norwegian
  • Norwegian Bokmal
  • Norwegian Nynorsk
  • Occitan
  • Oriy
  • Panjabi
  • Piedmontese
  • Polish
  • Portuguese
  • Romanian
  • Romansh
  • Russian
  • Sanskrit and Prakrit
  • Serbian Cyrillic
  • Serbocroatian Cyrillic
  • Serbocroatian Latin
  • Slovak
  • Slovenian
  • Spanish
  • Swedish
  • Swiss-German
  • Tamil
  • Telugu
  • Thai
  • Turkish
  • Turkmen
  • Ukrainian
  • Upper Sorbian
  • Welsh

###Hyphenation in CSS The CSS hyphens property is intended to add hyphenation support to modern browsers without Javascript:

p {
  hyphens: auto;
}

It is part of the CSS Text Level 3 specification. The browser compatibility list can be found on the related MDN page.

###Alternatives Check out other well-known Javascript hyphenation algorithm implementations:

  • Hyphenator.js Javascript that implements client-side hyphenation of HTML-Documents.
  • Hypher A fast and small JavaScript hyphenation engine.

###License MIT

Keywords

FAQs

Package last updated on 18 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc