java -jar docGenerator.jar -input=wiki/input -output=wiki/output -hasTOC=false
will not present any table of content for any article.
java -jar docGenerator.jar -input=wiki/input -output=wiki/output -tocThreshold=5
will only show table of content for articles which have at least 5 titles.
java -jar docGenerator.jar -input=wiki/input -output=wiki/output -toxMaxLevel=2
will only present in the articles table of content titles up to level 2. toc attribute for an article specifies that this article will not have a table of content regardless of the general configuration (it can only have the false value if present)tocMaxLevel attribute indicates the maximum level of titles to show in the Table of content<article desc="an article without a toc" toc="false"> ... </article>The following example will only show the Table of content up to level 1:
<article desc="an article with a toc limited at level 1" tocMaxLevel="1"> ... </article>
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.