There was an error while loading. Please reload this page.
1 parent c2070bf commit a551778Copy full SHA for a551778
1 file changed
src/css/custom.css
@@ -197,3 +197,12 @@ article a {
197
.theme-admonition-info [class*='admonitionIcon'] svg {
198
fill: var(--ifm-color-primary);
199
}
200
+
201
+/* Some reference tables are two-column label/value pairs with no meaningful
202
+ heading. Markdown has no way to write a table without a header row, so those
203
+ are written with blank cells -- which still render as an empty band above the
204
+ table. Hide the header when every cell in it is blank; tables with real
205
+ headings are untouched. */
206
+.markdown table thead:not(:has(th:not(:empty))) {
207
+ display: none;
208
+}
0 commit comments