I have created a Paper document that contains the grid. Within the grid, some of the cells contain new lines. When exporting the Paper document to Markdown, the new lines are exported as raw new lines rather than <br> which is the appropriate method for putting new lines in a grid cell: https://alvinalexander.com/text/how-put-multiple-lines-markdown-table-cell-multiline-table To repro: Create a grid in Paper. Put a new line within a cell. Export to Markdown. Expected Export ``` # Test | **Header1** | **Header2** | | ------------------- | ------------------- | | Multi-line < br > Content | Single line content | ``` Actual Export ``` # Test | **Header1** | **Header2** | | ------------------ | ------------------- | | Multi-line Content | Single line content | ``` This is an invalid export since it does not contain the <br> in the `Multi-line Content` cell.
... View more