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.
Post History
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> ...
Answer
#1: Initial revision
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 ```html <details> <summary>Heading</summary> Content goes here </details> ``` Renders as <details> <summary>Heading</summary> Content goes here </details> 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.