1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:27:45 +00:00

LibMarkdown: Add support for Tables

This adds support for GFM-like tables.
The HTML rendering ignores the alignments and relative sizes, but the
terminal view does not!
This commit is contained in:
AnotherTest 2020-09-20 16:44:03 +04:30 committed by Andreas Kling
parent 7640cb8ec4
commit 176a2f193c
4 changed files with 309 additions and 1 deletions

View file

@ -4,6 +4,7 @@ set(SOURCES
Heading.cpp
List.cpp
Paragraph.cpp
Table.cpp
Text.cpp
)