From 5726c086ca3e4c0abeeae1962eee41b3db93e32d Mon Sep 17 00:00:00 2001 From: Gabriel Filion Date: Wed, 28 Apr 2010 13:12:05 -0400 Subject: [PATCH] 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 --- Documentation/bup-drecurse.1.md | 2 +- Documentation/bup-fuse.1.md | 2 +- Documentation/bup-help.1.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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-`. -- 2.39.5