sindresorhus/refined-github




The issue has been closed
Add button to collapse readme/markdown sections #3224
fregante posted onGitHub
Readmes can become link (e.g. https://github.com/sindresorhus/refined-github) so it would be useful sometimes to collapse/expand all sections to sort of generate a temporary "Table of Contents"
<table><th>Open<th>Collapsed
<tr><td width="50%">
<td valign=top>
</table>
This is especially useful when looking at API documentation like in https://github.com/fregante/text-field-edit
<table><th>Open<th>Collapsed
<tr><td width="50%">
<td valign=top>
</table>
/* demo CSS */
.markdown-body h2 ~ p,
.markdown-body h2 ~ ul,
.markdown-body h2 ~ div,
.markdown-body h2 ~ table,
.markdown-body h2 ~ details {
display: none;
}
I'm thinking that this could be implemented as a "click to toggle" on each heading, plus the usual "alt-click to toggle all". Basically no UI.
Alternatively this could be coupled with a "toggle all" button next to edit-readme