Expand description
Building blocks for advanced wrapping functionality.
The functions and structs in this module can be used to implement
advanced wrapping functionality when wrap()
fill()
don’t do what you want.
In general, you want to follow these steps when wrapping something:
-
Split your input into
Fragment
s. These are abstract blocks of text or content which can be wrapped into lines. SeeWordSeparator
for how to do this for text. -
Potentially split your fragments into smaller pieces. This allows you to implement things like hyphenation. If you use the
Word
type, you can useWordSplitter
enum for this. -
Potentially break apart fragments that are still too large to fit on a single line. This is implemented in
break_words
. -
Finally take your fragments and put them into lines. There are two algorithms for this in the
wrap_algorithms
module:wrap_optimal_fit
andwrap_first_fit
. The former produces better line breaks, the latter is faster. -
Iterate through the slices returned by the wrapping functions and construct your lines of output.
Please open an issue if the functionality here is not sufficient or if you have ideas for improving it. We would love to hear from you!
Structs§
- A piece of wrappable text, including any trailing whitespace.
Traits§
- A (text) fragment denotes the unit which we wrap into lines.
Functions§
- Forcibly break words wider than
line_width
into smaller words. - Compute the display width of
text
while skipping over ANSI escape sequences.