From: Gabriel Filion Date: Wed, 28 Apr 2010 17:12:05 +0000 (-0400) Subject: Documentation: some placeholders are lost X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5726c086ca3e4c0abeeae1962eee41b3db93e32d;p=packages%2Fb%2Fbup.git Documentation: some placeholders are lost Some pieces of text in the documentation files use the <...> syntax to mark named placeholders. However, the conversion done by pandoc from Markdown to makefile makes some of these placeholders disappear. The affected elements are those that contain only characters that could be valid for an e-mail address or a URL, but are not supposed to be one of both. Also, elements inside `...`-style code blocks are unaffected. Fix this situation by escaping the < and > characters where the tags disappear. Signed-off-by: Gabriel Filion --- diff --git a/Documentation/bup-drecurse.1.md b/Documentation/bup-drecurse.1.md index a09b9f3..118d5fa 100644 --- a/Documentation/bup-drecurse.1.md +++ b/Documentation/bup-drecurse.1.md @@ -8,7 +8,7 @@ bup drecurse - recursively list files in your filesystem # SYNOPSIS -bup drecurse [-x] [-q] [--profile] +bup drecurse [-x] [-q] [--profile] \ # DESCRIPTION diff --git a/Documentation/bup-fuse.1.md b/Documentation/bup-fuse.1.md index 1aa16b2..a32dd8d 100644 --- a/Documentation/bup-fuse.1.md +++ b/Documentation/bup-fuse.1.md @@ -8,7 +8,7 @@ bup fuse - mount a bup repository as a filesystem # SYNOPSIS -bup fuse [-d] [-f] [-o] +bup fuse [-d] [-f] [-o] \ # DESCRIPTION diff --git a/Documentation/bup-help.1.md b/Documentation/bup-help.1.md index 04f2081..f9f29f0 100644 --- a/Documentation/bup-help.1.md +++ b/Documentation/bup-help.1.md @@ -8,11 +8,11 @@ bup help - open the documentation for a given bup command # SYNOPSIS -bup help +bup help \ # DESCRIPTION -`bup help ` opens the documentation for the given command. +`bup help ` opens the documentation for the given command. This is currently equivalent to typing `man bup-`.