from py_markdown_table.markdown_table import markdown_table
data = [{"a": "aaaa\rbbbb","b":123131}]
markdown_content = (
markdown_table(data)
.set_params(row_sep="markdown", quote=False)
.get_markdown()
)
markdown_content
it outputs:
| a | b |
|---------|------|
|aaaa
bbbb|123131|
Does the library support escape \r and \n etc?
it outputs:
Does the library support escape \r and \n etc?