Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
Comments on Ability to set tables to be collapsed?
Parent
Ability to set tables to be collapsed?
With this post I have a really big table, and it takes up quite a bit of space. I could fold it over (add extra columns, fold table into a 8x25 table instead of a 2x100), but that is, ofc, extra work, and the ability to instead mark the table so it's "collapsed" (not visible) by default would be nice.
Post
For now, as a workaround, you can use detail
tags to create collapsible sections (I've also used this to hide large images).
For example
<details>
<summary>Heading</summary>
Content goes here
</details>
Renders as
Heading
Content goes here
While not as feature rich as one might like (you can't do the mentioned fold of a 2x100 table into an 8x25), it will at least keep the post a manageable size.
1 comment thread