show/hide this revision's text 2 added 322 characters in body

You can make it possible to split long words by inserting soft hyphen (­).

averyvery­longword

may be rendered as

averyverylongword

or

averyvery-
longword

(Use zero-width space character if you don't want visible hyphen)

A nice regular expression can ensure you won't be inserting them unless neccessary.:

/([^\s-]{5})([^\s-]{5})/  $1­$2
show/hide this revision's text 1

You can make it possible to split long words by inserting soft hyphen (­).

A nice regular expression can ensure you won't be inserting them unless neccessary.