2 releases
0.1.1 | Jun 3, 2021 |
---|---|
0.1.0 | Jun 1, 2021 |
#367 in Text processing
57,899 downloads per month
Used in 113 crates
(22 directly)
9KB
171 lines
indent
This crate provides 4 functions useful for inserting a multiline string into an already indented context in another string:
indent_by
: Indents every line that is not empty by the given number of spaces, starting from the second line.indent_with
: Indents every line that is not empty with the given prefix, starting from the second line.indent_all_by
: Indents every line that is not empty by the given number of spaces.indent_all_with
: Indents every line that is not empty with the given prefix.
Examples
fn main() {
let string = "line one
line two
";
assert_eq!("line one\n\n line two\n", indent::indent_by(2, string));
}
License
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed under the Mozilla Public License 2.0, without any additional terms or conditions.