Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | typo. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
263d448eacfc1f75d2faa78829782526 |
User & Date: | vdh 2019-12-13 14:28:44 |
Context
2019-12-13 15:01 | manpage fix (bring back into sync with version on other branches). check-in: 13f16da74f user: vdh tags: trunk | |
2019-12-13 14:28 | typo. check-in: 263d448eac user: vdh tags: trunk | |
2019-12-13 14:08 | minor adjustments to quickstart.md. check-in: bd18da5f0b user: vdh tags: trunk | |
Changes
Changes to www/man.md.
1 2 3 4 | man page ======== Below follows a transcript of the **sd** man page. | | | 1 2 3 4 5 6 7 8 9 10 11 12 | man page ======== Below follows a transcript of the **sd** man page. See also the [quickstart guide](quick.md). NAME ==== sd - switch between directories using a dynamic directory stack SYNOPSIS |
︙ | ︙ |
Changes to www/mkman.sh.
︙ | ︙ | |||
27 28 29 30 31 32 33 | pandoc -f man -t markdown_strict |\ ( # add a preamble print " man page ======== Below follows a transcript of the **sd** man page. | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | pandoc -f man -t markdown_strict |\ ( # add a preamble print " man page ======== Below follows a transcript of the **sd** man page. See also the [quickstart guide](quick.md). " # post process the result to remove residual formatting errors sed -E ' s/(^[1-9]\. )/\\\1/g s/\*\*\*([^*]+)\*\*\*/\1/g s/"\*\*([^*]+)\*\*/ \1 /g s/\*"/*/g s/"([^*]+[^!]\*)/ \1/g # this escapes more general patterns: s/\*\* sdcmd\*\*/ **sdcmd**/g ' ) >| man.md |