From cbd0b6d1fbc1850819c3ef6149f0c80a52ecfc34 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Wed, 1 May 2024 12:28:35 -0400 Subject: [PATCH] Hide ToC on print --- assets/css/print.css | 3 +++ layouts/shortcodes/toc.html | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/css/print.css b/assets/css/print.css index 8906a2f..4a8b84d 100644 --- a/assets/css/print.css +++ b/assets/css/print.css @@ -7,6 +7,9 @@ } /* Hide screen-only content */ + /* Table of Contents is useless in print layouts without page numbers, + * which I haven't implemented yet */ + #toc, [href="#h1"], /* Skip link */ [role="doc-backlink"], /* can't navigate back on print. */ aside:not([role="note"]), diff --git a/layouts/shortcodes/toc.html b/layouts/shortcodes/toc.html index 808b84f..8fca896 100644 --- a/layouts/shortcodes/toc.html +++ b/layouts/shortcodes/toc.html @@ -1,4 +1,4 @@ -
+
Toggle table of contents

Table of Contents

{{.Page.TableOfContents}}