diff --git a/CHANGELOG.md b/CHANGELOG.md index 4043bcf..1650075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Table with subject containing `\r` or `\n`[#141] +- Table with subject containing `\r`, `\n` or `\t` [#141] - Overflow panic when shrink column [#138] - Vim plugin empty mailbox message [#136] diff --git a/src/table.rs b/src/table.rs index 7e50d7f..a1ee630 100644 --- a/src/table.rs +++ b/src/table.rs @@ -44,7 +44,8 @@ impl Cell { styles: Vec::new(), value: String::from(value.as_ref()) .replace("\r", "") - .replace("\n", ""), + .replace("\n", "") + .replace("\t", ""), shrinkable: false, } }