align_text: Align text within a specified width

This crate defines a trait Align with a method align_text() implemented for two types:

You can specify the alignment, the number of columns, whether to wrap long lines, whether to trim lines first, etc.

Examples

Input lines: "Hello ", " World!", " This should center-align ", Output lines: " Hello ", " World! ", " This should center-align ",

Input text's lines: "graphic design" "is my" "pAsSiOn" * Output text's lines: " graphic design", " is my", " pAsSiOn",