Improved UTF-8 support
The newest version of vge_tagcloud (1.6.0) offers improved support when working with UTF-8 data. Indeed it could happen that the tag cloud would split words (using the regular expression defined by the TypoScript property splitWords) in the middle of a word.
This is quite easy to solve by using the "u" modifier with the regular expression, unfortunately this was hard-coded in the extension and thus not accessible as a parameter. vge_tagcloud 1.6.0 introduces a new property called splitWordsWrap which defines the wrapper around the regular expression. Its default value is /|/u. This means that UTF-8 data will now be properly handled out of the box.
It is possible that this default value causes some problems with non UTF-8 data, in which case you should simply set:
plugin.tx_vgetagcloud_pi1.splitWordsWrap = /|/
Comments