From 1e45986430521eb1926c8bbeda98b79793598bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Tue, 10 Sep 2013 21:02:55 -0400 Subject: [PATCH] be bold: make backticks bold in the manpage --- Build/mdwn2man | 1 + doc/git-annex.mdwn | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Build/mdwn2man b/Build/mdwn2man index ba5919b385..7f819adf73 100755 --- a/Build/mdwn2man +++ b/Build/mdwn2man @@ -8,6 +8,7 @@ print ".TH $prog $section\n"; while (<>) { s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg; + s/\`([^\`]*)\`/\\fB$1\\fP/g; s/\`//g; s/^\s*\./\\&./g; if (/^#\s/) { diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 6db91a05f8..4c7380607c 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -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 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, - use 'trustlevel+'. For example, "--copies=semitrusted+:2" + use 'trustlevel+'. For example, `--copies=semitrusted+:2` * --copies=groupname:number Matches only files that git-annex believes have the specified number of copies, on remotes in the specified group. For example, - "--copies=archive:2" + `--copies=archive:2` * --inbackend=name @@ -1123,7 +1123,7 @@ Here are all the supported configuration settings. Options to use when using rsync 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..annex-rsync-transport` @@ -1137,14 +1137,14 @@ Here are all the supported configuration settings. * `remote..annex-bup-split-options` 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.) * `remote..annex-gnupg-options` 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 - 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 used.)