Lines shouldn't trim

This commit is contained in:
JT 2021-10-03 10:56:11 +13:00
parent 758fce8ae3
commit 75e323ee35

View file

@ -62,7 +62,7 @@ impl Command for Lines {
.filter_map(|s| {
if !s.is_empty() {
Some(Value::String {
val: s.trim().into(),
val: s.into(),
span,
})
} else {