be bold: make backticks bold in the manpage
This commit is contained in:
parent
8fbbf11233
commit
1e45986430
2 changed files with 7 additions and 6 deletions
|
@ -8,6 +8,7 @@ print ".TH $prog $section\n";
|
||||||
|
|
||||||
while (<>) {
|
while (<>) {
|
||||||
s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
|
s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
|
||||||
|
s/\`([^\`]*)\`/\\fB$1\\fP/g;
|
||||||
s/\`//g;
|
s/\`//g;
|
||||||
s/^\s*\./\\&./g;
|
s/^\s*\./\\&./g;
|
||||||
if (/^#\s/) {
|
if (/^#\s/) {
|
||||||
|
|
|
@ -870,16 +870,16 @@ file contents are present at either of two repositories.
|
||||||
|
|
||||||
Matches only files that git-annex believes have the specified number of
|
Matches only files that git-annex believes have the specified number of
|
||||||
copies, on remotes with the specified trust level. For example,
|
copies, on remotes with the specified trust level. For example,
|
||||||
"--copies=trusted:2"
|
`--copies=trusted:2`
|
||||||
|
|
||||||
To match any trust level at or higher than a given level,
|
To match any trust level at or higher than a given level,
|
||||||
use 'trustlevel+'. For example, "--copies=semitrusted+:2"
|
use 'trustlevel+'. For example, `--copies=semitrusted+:2`
|
||||||
|
|
||||||
* --copies=groupname:number
|
* --copies=groupname:number
|
||||||
|
|
||||||
Matches only files that git-annex believes have the specified number of
|
Matches only files that git-annex believes have the specified number of
|
||||||
copies, on remotes in the specified group. For example,
|
copies, on remotes in the specified group. For example,
|
||||||
"--copies=archive:2"
|
`--copies=archive:2`
|
||||||
|
|
||||||
* --inbackend=name
|
* --inbackend=name
|
||||||
|
|
||||||
|
@ -1123,7 +1123,7 @@ Here are all the supported configuration settings.
|
||||||
|
|
||||||
Options to use when using rsync
|
Options to use when using rsync
|
||||||
to or from this remote. For example, to force ipv6, and limit
|
to or from this remote. For example, to force ipv6, and limit
|
||||||
the bandwidth to 100Kbyte/s, set it to "-6 --bwlimit 100"
|
the bandwidth to 100Kbyte/s, set it to `-6 --bwlimit 100`
|
||||||
|
|
||||||
* `remote.<name>.annex-rsync-transport`
|
* `remote.<name>.annex-rsync-transport`
|
||||||
|
|
||||||
|
@ -1137,14 +1137,14 @@ Here are all the supported configuration settings.
|
||||||
* `remote.<name>.annex-bup-split-options`
|
* `remote.<name>.annex-bup-split-options`
|
||||||
|
|
||||||
Options to pass to bup split when storing content in this remote.
|
Options to pass to bup split when storing content in this remote.
|
||||||
For example, to limit the bandwidth to 100Kbyte/s, set it to "--bwlimit 100k"
|
For example, to limit the bandwidth to 100Kbyte/s, set it to `--bwlimit 100k`
|
||||||
(There is no corresponding option for bup join.)
|
(There is no corresponding option for bup join.)
|
||||||
|
|
||||||
* `remote.<name>.annex-gnupg-options`
|
* `remote.<name>.annex-gnupg-options`
|
||||||
|
|
||||||
Options to pass to GnuPG for symmetric encryption. For instance, to
|
Options to pass to GnuPG for symmetric encryption. For instance, to
|
||||||
use the AES cipher with a 256 bits key and disable compression, set it
|
use the AES cipher with a 256 bits key and disable compression, set it
|
||||||
to "--cipher-algo AES256 --compress-algo none". (These options take
|
to `--cipher-algo AES256 --compress-algo none`. (These options take
|
||||||
precedence over the default GnuPG configuration, which is otherwise
|
precedence over the default GnuPG configuration, which is otherwise
|
||||||
used.)
|
used.)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue