Add newline after text table

This commit is contained in:
Paul Brinkmeier 2023-03-24 12:54:55 +01:00
parent ab667742da
commit 0d59ded2ec

View File

@ -17,7 +17,7 @@ cr :: Text -> Cell
cr = C AlignRight
render :: Text -> [[Cell]] -> Text
render delim cells = Text.intercalate "\n" $ map showRow cells
render delim cells = Text.unlines $ map showRow cells
where
showRow = Text.intercalate delim . map showCell . zipLongest columnWidths