From 9a544dd72631816541b2fabd94f3388c295e5a7d Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Thu, 15 Sep 2016 00:19:01 -0700 Subject: [PATCH] Makefile: Add --toc-depth=1 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5aa68e..f7fa73f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ clean: .PHONY: all clean %.html: %.md - pandoc --toc -sS -o $@ $< + pandoc -sS --toc --toc-depth=1 -o $@ $< %.pdf: %.md - pandoc --toc -S -o $@ $< + pandoc -S --toc --toc-depth=1 -o $@ $<