diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-10-02 14:56:47 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-10-02 14:56:47 +0000 |
commit | 1a292c4956427312d2ebea2becc01a2861e089fc (patch) | |
tree | d767b2200fd77455d1c7f9c1ef1ec6648d1750b0 /manconf.h | |
parent | 9e238facdedce54e6eeccb030929d4b3893df873 (diff) | |
download | mandoc-1a292c4956427312d2ebea2becc01a2861e089fc.tar.gz |
Add an option -T html -O toc to add a brief table of contents near
the top of HTML pages containing at least two non-standard sections.
Suggested by Adam Kalisz and discussed with kristaps@ during EuroBSDCon 2018.
Diffstat (limited to 'manconf.h')
-rw-r--r-- | manconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -34,8 +34,9 @@ struct manoutput { size_t width; int fragment; int mdoc; - int synopsisonly; int noval; + int synopsisonly; + int toc; }; struct manconf { |