123456789101112131415161718192021222324 |
- var Hyphenopoly = {
- require: {
- "fr": "honorificabilitudinitas",
- },
- setup: {
- selectors: {
- // class
- ".hyphen": {
- hyphen: "\u00AD",
- leftmin: 5,
- rightmin: 5,
- minWordLength: 3,
- dontHyphenate: {
- math: true,
- acronym: true,
- capitalized: true,
- // \u00a0 | : true,
- orphanControl: 2,
- }
- },
- },
- },
- };
|