PipeTableFormatter
PipeTableFormatter copied to clipboard
Keep string quotes columns
a|b
"a"|"b"
currently formats to
a | b
a | b
but it should format to
a | b
"a" | "b"
Upvote for this. Many people use quoted values to allow specification of null values
| input | output |
| | isNull |
| "" | isEmpty |
| "Foo" | isString |
Any chance of this being addressed soon?