mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Add support for table caption in grid table #118
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?
Originally created by @pearsonn on GitHub (Jun 14, 2017).
It would be great if there was a syntactic way of specifying a table caption to output a
<caption>element within the table.@xoofx commented on GitHub (Jun 28, 2017):
Problem is that it is quite difficult to make Markdown syntax simple if we want to cover every features available in HTML... so not sure there is a plain syntax way to do this easily...
@christophano commented on GitHub (Jul 11, 2017):
Would this not be a good use case for the existing
<figure>/<figcaption>functionality?I was about to suggest a change to remove the figure and move the
<figcaption>contents to a<caption>for cases where the only child of a<figure>is a table but the MDN Documentation has its own recommendation.@PulsarFX commented on GitHub (Sep 28, 2017):
What about
taken from
http://fletcherpenney.net/multimarkdown/
https://rawgit.com/fletcher/human-markdown-reference/master/index.html
@NeomMob commented on GitHub (Oct 4, 2019):
I would be really happy to have it like MMD.
@SebastianRaffel commented on GitHub (Jul 10, 2020):
A workaround could be to use attribute extensions and generate
<caption>from that afterwards. Works with markdig(advanced): babelmark@xoofx commented on GitHub (Jul 10, 2020):
Agreed, that can be workaround or done with a custom extension, but I don't see how we can come up with something that would work beyond Markdig.
Closing as wontfix