From 719afd48acec27ce9f1bd71155fa3ac1a1e073f1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 29 May 2015 01:59:20 -0700 Subject: [PATCH] style the markdown toc a bit to hide the first item (the contents heading) --- docs/assets/scss/_layout.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/assets/scss/_layout.scss b/docs/assets/scss/_layout.scss index c102595f02..0ec7f7e99b 100644 --- a/docs/assets/scss/_layout.scss +++ b/docs/assets/scss/_layout.scss @@ -78,3 +78,13 @@ } } } + + +// +// Markdown generated ToC +// + +// Hide the first child li because it's always going to be "Contents". +#markdown-toc > li:first-child { + display: none; +}