From a1da7e87face87cc70b3b0894cbff6c4d7f67529 Mon Sep 17 00:00:00 2001 From: Sanders Kleinfeld Date: Tue, 4 Nov 2014 20:23:21 -0500 Subject: [PATCH] Turning TOC/index generation on by default for all formats. --- atlas.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/atlas.json b/atlas.json index eed613f1..d1dc194a 100644 --- a/atlas.json +++ b/atlas.json @@ -12,16 +12,22 @@ "pdf": { "version": "web", "toc": true, + "index": true, "syntaxhighlighting": true }, "epub": { + "toc": true, + "index": true, "syntaxhighlighting": true }, "mobi": { + "toc": true, + "index": true, "syntaxhighlighting": true }, "html": { "toc": true, + "index": true, "syntaxhighlighting": true } },