hyph.js 537 B

123456789101112131415161718192021222324
  1. var Hyphenopoly = {
  2. require: {
  3. "fr": "honorificabilitudinitas",
  4. },
  5. setup: {
  6. selectors: {
  7. // class
  8. ".hyphen": {
  9. hyphen: "\u00AD",
  10. leftmin: 5,
  11. rightmin: 5,
  12. minWordLength: 3,
  13. dontHyphenate: {
  14. math: true,
  15. acronym: true,
  16. capitalized: true,
  17. // \u00a0 | : true,
  18. orphanControl: 2,
  19. }
  20. },
  21. },
  22. },
  23. };