Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | First part of TOC generation support (no links yet) | Boris Kolpackov | 2016-02-11 | 9 | -79/+573 |
| | | | | 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 | 7 | -4/+147 |
| | | | | | | | | | | 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 | 8 | -7/+119 |
| | |||||
* | 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 | 12 | -14/+151 |
| | | | | | 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 |
| | |||||
* | Fix to work with latest build2 | Boris Kolpackov | 2015-12-03 | 1 | -4/+4 |
| | |||||
* | Don't require ';' after option documentation block | Boris Kolpackov | 2015-11-26 | 2 | -10/+26 |
| | |||||
* | 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 | 11 | -87/+253 |
| | |||||
* | Implement support for documentation inside classes | Boris Kolpackov | 2015-11-24 | 13 | -216/+354 |
| | |||||
* | 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 | 15 | -267/+1273 |
| | |||||
* | 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 | 8 | -23/+148 |
| | |||||
* | Fix man font selection logic | Boris Kolpackov | 2015-11-18 | 3 | -154/+188 |
| | |||||
* | 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 | 8 | -248/+297 |
| | |||||
* | 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 |
| | |||||
* | Add support for man formatting | Boris Kolpackov | 2015-11-13 | 7 | -206/+292 |
| | |||||
* | Implement plain text formatting for new blocks | Boris Kolpackov | 2015-11-12 | 2 | -388/+86 |
| | |||||
* | New formatter implementation | Boris Kolpackov | 2015-11-12 | 2 | -41/+431 |
| | |||||
* | Implement list support | Boris Kolpackov | 2015-11-11 | 3 | -64/+210 |
| | |||||
* | Rework paragraph block handling in formatter | Boris Kolpackov | 2015-11-10 | 1 | -47/+122 |
| | |||||
* | Implement support pre-formatted fragments | Boris Kolpackov | 2015-11-09 | 3 | -30/+164 |
| | | | | | | | | | | | | For example: / x y z / Other text. | ||||
* | Add support for expanding documentation variables | Boris Kolpackov | 2015-10-31 | 1 | -15/+83 |
| | |||||
* | Parse and enter documentation variables | Boris Kolpackov | 2015-10-31 | 3 | -27/+94 |
| | |||||
* | Add support for \h paragraph | Boris Kolpackov | 2015-10-31 | 1 | -17/+84 |
| | |||||
* | Reimplement format() to first split string into paragraphs | Boris Kolpackov | 2015-10-30 | 2 | -65/+124 |
| | |||||
* | Implement scope documentation generation in HTML | Boris Kolpackov | 2015-10-30 | 8 | -345/+380 |
| | |||||
* | Add parsing support for scope-level documentation | Boris Kolpackov | 2015-10-29 | 15 | -106/+286 |
| | |||||
* | Regenerate man pages | Boris Kolpackov | 2015-10-29 | 2 | -0/+25 |
| |