From 32f5767f5a355e3462bb011677d0372388f59334 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Wed, 6 Apr 2022 12:13:03 -0400 Subject: [PATCH] feat: Add CSS for "toc:t num:t" exports Ref: https://github.com/kaushalmodi/ox-hugo/pull/613 --- layouts/_default/baseof.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 8f43d6a..6adcb93 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -91,6 +91,10 @@ .org-target::after { content: '◎ '; } + /* Hide bullets in TOC when headings are numbered. */ + .toc.has-section-numbers ul { + list-style: none; + }