This repository was archived by the owner on Aug 3, 2024. It is now read-only.
This repository was archived by the owner on Aug 3, 2024. It is now read-only.
Add markup support for tables #530
Closed
Description
Providing support for simple tables would go a long way IMO,
Tables could be detected by looking for a paragraph whose first columns form a sequence of
'+'
('|'
{1..n}'+'
){1..m}
This would allow writing tables which look like
{- | Lorem ipsum dolor sit amet, consectetur adipiscing elit
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
+----------+----------+----------+
| 32bit | 32bit | 64bit |
+==========+==========+==========+
| 0x0000 | 0x0000 | 0x0000 |
+----------+----------+----------+
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+------+--------------+------------------------------------------+
| code | message | description |
+======+==============+==========================================+
| 200 | @OK@ | operation successful |
+------+--------------+------------------------------------------+
| 204 | @No Content@ | operation successful, no body returned |
+------+--------------+------------------------------------------+
-}