| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Start switch to build2 | Boris Kolpackov | 2016-11-15 | 68 | -1046/+197 |
| | | |||||
| * | Bump version to 1.2.0-a2 | Boris Kolpackov | 2016-11-14 | 1 | -1/+1 |
| | | |||||
| * | Add class to preface TOC element so that it can be styled | Boris Kolpackov | 2016-10-08 | 1 | -1/+1 |
| | | |||||
| * | Add --omit-link-check option | Boris Kolpackov | 2016-09-03 | 5 | -11/+41 |
| | | |||||
| * | Add support for escaping pre-formatted fragment marker | Boris Kolpackov | 2016-09-02 | 1 | -3/+10 |
| | | | | | | | | | | | | | For example: \ \\ \ Of course now we cannot specify the literal escape sequence. Perhaps we should recognize a line consisting of N (N > 1) back slashes and output all but the first. | ||||
| * | Support suppressing CLI runtime generation (--suppress-cli) | Boris Kolpackov | 2016-06-20 | 5 | -7/+44 |
| | | | | | This is useful in pure-help pages. | ||||
| * | Add support for generating vector<string> scanner (--generate-vector-scanner) | Boris Kolpackov | 2016-02-12 | 7 | -0/+119 |
| | | |||||
| * | Strip .br from man .IP value, add .br after to force newline | Boris Kolpackov | 2016-02-11 | 1 | -1/+39 |
| | | |||||
| * | Remove empty <th> from preface TOC entries | Boris Kolpackov | 2016-02-11 | 1 | -4/+9 |
| | | |||||
| * | Add support for re-mapping HTML headings | Boris Kolpackov | 2016-02-11 | 5 | -16/+80 |
| | | |||||
| * | Improve generic value parser (extract char) | Boris Kolpackov | 2016-02-11 | 1 | -4/+7 |
| | | |||||
| * | Assign numbers to TOC headings | Boris Kolpackov | 2016-02-11 | 2 | -0/+25 |
| | | |||||
| * | Implement links in TOC | Boris Kolpackov | 2016-02-11 | 1 | -0/+8 |
| | | |||||
| * | Add support for ids in paragraphs, local fragment references in links | Boris Kolpackov | 2016-02-11 | 4 | -19/+148 |
| | | | | | | | | | | | For example: " \h#hello|Hello Example| See the \l{#hello Hello Example} " | ||||
| * | First part of TOC generation support (no links yet) | Boris Kolpackov | 2016-02-11 | 7 | -79/+433 |
| | | | | | Currently only supported in the HTML output. | ||||
| * | Add support for variable expansion (\$var$) in doc strings | Boris Kolpackov | 2016-02-09 | 6 | -22/+125 |
| | | |||||
| * | Add support for relative link targets | Boris Kolpackov | 2016-02-09 | 1 | -9/+3 |
| | | | | | Now we only "recognize" the link target as man page if it contains '('. | ||||
| * | Add \h0 \h1 \H \h2 headings in addition to \h | Boris Kolpackov | 2016-02-01 | 1 | -9/+61 |
| | | | | | | | Currently only has effect in HTML output (in other formats they are all treated as \h). Also, automatic mapping of \h to <h1> or <h2> depending on whether \h0 or \h1 was seen only works for single doc-string documents. | ||||
| * | Add support for link transformation (--link-regex) | Boris Kolpackov | 2016-02-01 | 6 | -25/+226 |
| | | |||||
| * | Include (1) in foo(1) into bold | Boris Kolpackov | 2016-01-31 | 1 | -11/+5 |
| | | |||||
| * | Make <arg> monospace | Boris Kolpackov | 2016-01-31 | 1 | -2/+2 |
| | | |||||
| * | Add support for file expansion in prologue/epilogue files | Boris Kolpackov | 2016-01-28 | 3 | -19/+72 |
| | | | | | | | This is similar to variable expansion ($name$) except here we detect if the name starts with ./ or ../ and treat it as a path relative to the prologue/ epilogue file. | ||||
| * | Implement support for sourcing .cli files | Boris Kolpackov | 2016-01-26 | 5 | -4/+141 |
| | | | | | | | | | | | The idea is that the file is "read in" as if its content was copy-n-pasted. For example: "\h|Installation|" source "INSTALL.cli" // Also used to generate plain text INSTALL. Unlike include, source can appear anywhere in the file. | ||||
| * | Improve html and plain text output | Boris Kolpackov | 2016-01-18 | 1 | -12/+111 |
| | | |||||
| * | Stop quoting \c in plain text | Boris Kolpackov | 2016-01-18 | 3 | -33/+23 |
| | | | | | | The recommended approach is to quote manually and only values that can be genuinely confused for being part of the text. For example, '-', '/', etc. | ||||
| * | Initial support for plain text documentation (--generate-txt) | Boris Kolpackov | 2016-01-18 | 10 | -130/+638 |
| | | | | | Support for option documentation generation is still a TODO. | ||||
| * | Handle newline-only lines in documentation string parser | Boris Kolpackov | 2016-01-16 | 1 | -23/+26 |
| | | |||||
| * | In long usage separate options with blank lines | Boris Kolpackov | 2016-01-11 | 1 | -3/+11 |
| | | |||||
| * | Add support for --output-{prefix,suffix} options | Boris Kolpackov | 2016-01-11 | 6 | -7/+104 |
| | | |||||
| * | Fix "over-qualification" | Boris Kolpackov | 2015-12-09 | 1 | -1/+1 |
| | | |||||
| * | Add --std option with c++{98,11,14} values; use function-static in C++11 | Boris Kolpackov | 2015-12-09 | 10 | -14/+143 |
| | | | | | | This way we can use option descriptions during static initialization (e.g., of an Apache module). | ||||
| * | Fix unused argument warning | Boris Kolpackov | 2015-12-03 | 1 | -1/+1 |
| | | |||||
| * | Don't require ';' after option documentation block | Boris Kolpackov | 2015-11-26 | 1 | -9/+21 |
| | | |||||
| * | Indent multi-line lists in plain text output | Boris Kolpackov | 2015-11-26 | 2 | -9/+52 |
| | | |||||
| * | Implement support for n-dash, \- | Boris Kolpackov | 2015-11-24 | 1 | -0/+26 |
| | | |||||
| * | Implement --class-doc option | Boris Kolpackov | 2015-11-24 | 9 | -74/+217 |
| | | |||||
| * | Implement support for documentation inside classes | Boris Kolpackov | 2015-11-24 | 10 | -198/+330 |
| | | |||||
| * | Add --include-base-last option | Boris Kolpackov | 2015-11-23 | 7 | -25/+65 |
| | | |||||
| * | Change print_short_usage() to print_usage() | Boris Kolpackov | 2015-11-23 | 3 | -32/+19 |
| | | |||||
| * | Colorize man page links | Boris Kolpackov | 2015-11-23 | 1 | -3/+15 |
| | | |||||
| * | Implement line break support (\n) | Boris Kolpackov | 2015-11-20 | 1 | -15/+65 |
| | | | | | | Note that several consecutive breaks in the man format will be collapsed into a single one. | ||||
| * | Implement entire page usage generation | Boris Kolpackov | 2015-11-19 | 13 | -267/+1233 |
| | | |||||
| * | Fix std::map parser implementation | Boris Kolpackov | 2015-11-19 | 1 | -4/+6 |
| | | |||||
| * | Make \h text bold if using ANSI color | Boris Kolpackov | 2015-11-19 | 1 | -1/+14 |
| | | |||||
| * | Add support for ANSI colorization of usage output | Boris Kolpackov | 2015-11-18 | 6 | -23/+135 |
| | | |||||
| * | Fix man font selection logic | Boris Kolpackov | 2015-11-18 | 2 | -41/+75 |
| | | |||||
| * | Add support for links in documentation: \l{<target>[ <text>]} | Boris Kolpackov | 2015-11-18 | 3 | -41/+202 |
| | | | | | | | If link target doesn't contain ':' (protocol separator), then it is assumed to be the man page reference in the form '<name>(<section>)'. If text is missing, then target is used as text. | ||||
| * | Support specifying documentation variables on command line | Boris Kolpackov | 2015-11-16 | 6 | -184/+227 |
| | | |||||
| * | Redo map parser to use sub-parsers for key, value | Boris Kolpackov | 2015-11-16 | 1 | -26/+10 |
| | | |||||
| * | Get rid of warning | Boris Kolpackov | 2015-11-16 | 1 | -2/+1 |
| | | |||||
