Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 541 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 541 Bytes

Textwrap

Text wrap algorithms like css 'overflow-wrap: break-word;'

overflow-wrap: break-word

  • Wrap text without breaking words as much as possible
  • Support Chinese characters and super long words

Usage

go get github.com/zbysir/textwrap
textwrap.TextWrap("text", func(s string) bool {
		return len(s) > 10
})

Known problems