-
-
Notifications
You must be signed in to change notification settings - Fork 11.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add spanned columns in tables #176
Comments
Can you provide pointers toward the spanning syntax used in other MD variants? Unsatisfying workaround: You can use raw HTML, like so:
Except that because of #157 it won't actually render very nicely -- it'll work a lot better if you put all the HTML on a single line. search keywords: colspan rowspan |
A follow-up to this... It seems that MultiMarkdown does have colspan syntax, but not rowspan. Probably the best way to do rowspan and colspan right now is to use this online HTML table generator to create your table, and then paste it into your email (or whatever) and use MDH to render it. Make sure to check the boxes for "Do not generate CSS" (because MDH provides the CSS) and "Compact mode" (to avoid the multi-line HTML problem I mentioned above). (I'm also going to add that to the Tips & Tricks wiki page.) |
Hi @adam-p! Do you think it would be feasible to implement rowspan in a Markdown parser at all? |
I like Textile's syntax for spans:
|
Uhm.. so no |
that link is dead btw, @CTimmerman |
Then use inline HTML instead. https://stackoverflow.com/a/35485694/819417 |
that was easy to misunderstand, apologies. i meant that the link to Textile's docs that you posted above ("https://txstyle.org/doc/15/tables") is dead. it should be https://textile-lang.com/doc/tables instead. |
Thanks. I couldn't find the new link due to https://pypi.org/project/TxtStyle/ which is probably why they renamed it. |
Please add support for spanned column in tables - as implemented in some other MD variants.
The text was updated successfully, but these errors were encountered: