mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
[PR #45] [MERGED] Adds support for rowspans in grid tables #779
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/xoofx/markdig/pull/45
Author: @christophano
Created: 8/12/2016
Status: ✅ Merged
Merged: 9/15/2016
Merged by: @xoofx
Base:
master← Head:feature/rowspan📝 Commits (2)
9506f22Adds support for rowspans in grid tablesa3691c4Fixed issue when malformed tables can result in an unhandled exception being thrown.📊 Changes
6 files changed (+509 additions, -232 deletions)
View changed files
📝
src/Markdig.Tests/Specs/GridTableSpecs.md(+89 -0)📝
src/Markdig.Tests/Specs/Specs.cs(+125 -0)📝
src/Markdig/Extensions/Tables/GridTableParser.cs(+241 -229)📝
src/Markdig/Extensions/Tables/HtmlTableRenderer.cs(+7 -3)📝
src/Markdig/Extensions/Tables/Table.cs(+35 -0)📝
src/Markdig/Extensions/Tables/TableCell.cs(+12 -0)📄 Description
I'm afraid I changed the
Grid Table Parserquite a bit here.Feel free to wrap my knuckles and suggest better changes though!
This adds support for cells spanning rows, in addition to columns.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.