Skip to content

Instantly share code, notes, and snippets.

@ssg
Created March 3, 2026 04:38
Show Gist options
  • Select an option

  • Save ssg/22dd67fe863e30e9aaa6549adbdb6196 to your computer and use it in GitHub Desktop.

Select an option

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
/* 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