--toc-level
no longer implies --toc
.
Reason: EPUB users who don't want a visible TOC may still want to set the TOC level for in the book navigation.
This commit is contained in:
parent
3deab5d8e3
commit
1de55ecbbd
2 changed files with 2 additions and 3 deletions
2
README
2
README
|
@ -323,7 +323,7 @@ General writer options
|
||||||
`--toc-depth=`*NUMBER*
|
`--toc-depth=`*NUMBER*
|
||||||
: Specify the number of section levels to include in the table
|
: Specify the number of section levels to include in the table
|
||||||
of contents. The default is 3 (which means that level 1, 2, and 3
|
of contents. The default is 3 (which means that level 1, 2, and 3
|
||||||
headers will be listed in the contents). Implies `--toc`.
|
headers will be listed in the contents).
|
||||||
|
|
||||||
`--no-highlight`
|
`--no-highlight`
|
||||||
: Disables syntax highlighting for code blocks and inlines, even when
|
: Disables syntax highlighting for code blocks and inlines, even when
|
||||||
|
|
|
@ -360,8 +360,7 @@ options =
|
||||||
(\arg opt -> do
|
(\arg opt -> do
|
||||||
case safeRead arg of
|
case safeRead arg of
|
||||||
Just t | t >= 1 && t <= 6 ->
|
Just t | t >= 1 && t <= 6 ->
|
||||||
return opt { optTOCDepth = t,
|
return opt { optTOCDepth = t }
|
||||||
optTableOfContents = True }
|
|
||||||
_ -> err 57 $
|
_ -> err 57 $
|
||||||
"TOC level must be a number between 1 and 6")
|
"TOC level must be a number between 1 and 6")
|
||||||
"NUMBER")
|
"NUMBER")
|
||||||
|
|
Loading…
Add table
Reference in a new issue