summaryrefslogtreecommitdiff
path: root/maybe-make-man
Commit message (Collapse)AuthorAgeFilesLines
* Add --force-link-text to md-convert.Wayne Davison2023-04-231-1/+8
|
* Change args to maybe-make-man.Wayne Davison2021-12-271-9/+4
|
* Unify md parsing scripts & improve non-man html conversions.Wayne Davison2021-12-271-2/+2
|
* rrsync improvementsWayne Davison2021-12-261-1/+1
| | | | | | | | | | | | - Convert rrsync to python. - Enhance security of arg & option checking. - Reject `-L` (`--copy-links`) by default. - Add `-munge` and `-no-del` options. - Tweak the logfile line format. - Created an rrsync man page. - Use `configure --with-rrsync` if you want `make install` to install rrsync and its man page. - Give lsh more rrsync testing support.
* A few more man page script improvements.Wayne Davison2020-06-091-2/+5
|
* Change man page src format from yodl to markdown.Wayne Davison2020-06-081-0/+37
This removes the yodl dependency, which is sometimes hard to track down. Instead, this uses a python3 script that leverages the cmarkgfm library to turn the source file into html. Then, the script parses the html in order to turn the tag stream into a nroff stream using a simple state machine. While it's doing that it also implements one added format rule that turns an ordinal list that starts at 0 into a description list (since markdown doesn't have an easy description list idiom).