mirror of
https://github.com/nushell/nushell.git
synced 2024-12-23 15:39:06 +01:00
fix the way lists are rendered in markdown (#6369)
This commit is contained in:
parent
ad7522bba0
commit
37bc90c62a
@ -169,7 +169,7 @@ fn table(input: PipelineData, pretty: bool, config: &Config) -> String {
|
||||
let data = row.get_data_by_key(&headers[i]);
|
||||
let value_string = data
|
||||
.unwrap_or_else(|| Value::nothing(span))
|
||||
.into_string("|", config);
|
||||
.into_string(", ", config);
|
||||
let new_column_width = value_string.len();
|
||||
|
||||
escaped_row.push(value_string);
|
||||
|
Loading…
Reference in New Issue
Block a user