Created
March 3, 2026 04:38
-
-
Save ssg/22dd67fe863e30e9aaa6549adbdb6196 to your computer and use it in GitHub Desktop.
Proper headerless table rendering for Obsidian - courtesy of Reddit user u/null_entity_75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Live Preview: Hide header only if 1st or last cells contain nothing but a <br> */ | |
| .cm-table-widget:not(.has-focus) thead:has(th:first-child > .table-cell-wrapper > br:only-child):has(th:last-child > .table-cell-wrapper > br:only-child) { | |
| display: none !important; | |
| } | |
| /* Reading Mode */ | |
| .markdown-rendered thead:not(:has(th:not(:empty))) { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment