评论由:benwbooth@gmail.com 发布
JIRA 破坏了我的格式,看起来我无法编辑它来修复。这是我真正想要说的话
当使用 print-table 将 ASCII 表格打印到 stdout 时,如果任何值是包含任何换行符的字符串,则表格显示将断裂。例如
`
user=> (print-table [{:a "test" :b "test\ntest2"}])
| :a | :b |
|------+------------|
| test | test
test2 |
`
我期望输出看起来像这样
user=> (print-table [{:a "test" :b "test\ntest2"}]) | :a | :b | |------+------------| | test | test + | | test2 |
右侧边框上的 + 符号表示行继续换行。这与 PostgreSQL psql 工具显示多行行的表类似
`
labtrack=# select 'test' col1, E'test\ntest2' col2;
col1 | col2
------+-------
test | test +
| test2
(1 row)
`