Fusion Wrapper for phpSyllable
PackageFactory.Hyphenate is available via packagist. Just add "packagefactory/hyphenate" : "~1.0.0"
to the require-section of the composer.json or run composer require packagefactory/hyphenate
.
Just use the PackageFactory.Hyphenate:HyphenateText
Fusion object as a processor on the fusion value that should be hyphenated.
someFusionValue = 'Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung'
[email protected] = PackageFactory.Hyphenate:HyphenateText {
locale = 'de'
}
Similar to text elements you can use PackageFactory.Hyphenate:HyphenateHtml
for HTML elements.
[email protected] = PackageFactory.Hyphenate:HyphenateHtml {
locale = 'de'
}
You can easily activate hyphenation for all Neos CMS text- and headline nodetypes with following Fusion code:
prototype(Neos.NodeTypes:Text) {
[email protected] = PackageFactory.Hyphenate:HyphenateHtml
}
prototype(Neos.NodeTypes:Headline) {
[email protected] = PackageFactory.Hyphenate:HyphenateHtml
}
locale (string) : Reference to the language in which the given string will be hyphenated (Have a look at https://github.com/vanderlee/phpSyllable/tree/master/languages for a reference of available languages)
threshold (integer, default = 0) : Minimum amount characters a word needs to have, before it is being hyphenated.
see LICENSE file