libk  Check-in [0ed5f80174]

Overview
Comment:remove nonexistant --normalize option
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0ed5f80174ac69e2b7a06bd29a483bbb674a9788931f9ca23ea2377f2ee8862b
User & Date: lexi on 2019-11-01 06:27:12
Other Links: manifest | tags
Context
2019-11-01
06:38
Merge accidental fork. check-in: bb6911fe4f user: glowpelt tags: trunk
06:27
remove nonexistant --normalize option check-in: 0ed5f80174 user: lexi tags: trunk
2019-10-31
03:44
add usage display for parameters and command line switches for kcli_set, the structure used to define command line syntax for the parser; add more string & buffer functions check-in: 927371b674 user: lexi tags: trunk
Changes

Modified global/build-manpage.sh from [af11c2c865] to [8cac5483dc].

    46     46   	offset=0
    47     47   fi
    48     48   
    49     49   tail -n+2 $file | head -n$(expr $descline - 2) | cmark --smart -t man >>"$fmt"
    50     50   
    51     51   echo >>"$fmt" ".SH DESCRIPTION"
    52     52   
    53         -tail -n+$(expr $descline + $offset) "$file"  | cmark --smart --normalize -t man >> "$fmt"
           53  +tail -n+$(expr $descline + $offset) "$file"  | cmark --smart -t man >> "$fmt"
    54     54   
    55     55   test "$doc_html" = "yes" && {
    56     56   	mkdir -p "$htmldest"
    57     57   	groff -Thtml -Kutf8 -m man "$fmt" > "$html"
    58     58   	test "$verbose" != "loud" ||
    59     59   	say "wrote html page for $stem to $html"
    60     60   }