diff options
-rwxr-xr-x | Build/mdwn2man | 3 | ||||
-rw-r--r-- | doc/bugs/importfeed_fails__44___bad_feed_content.mdwn | 2 | ||||
-rw-r--r-- | doc/bugs/manpage_has_slight_indentation_error.mdwn | 2 | ||||
-rw-r--r-- | doc/related_software.mdwn | 1 | ||||
-rw-r--r-- | doc/todo/mdwn2man:_make_backticks_bold.mdwn | 2 | ||||
-rw-r--r-- | doc/todo/nicer_whereis_output.mdwn | 7 |
6 files changed, 15 insertions, 2 deletions
diff --git a/Build/mdwn2man b/Build/mdwn2man index ba5919b38..aadb13cdf 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/) { @@ -25,7 +26,7 @@ while (<>) { $inlist=1; $spippara=0; } - elsif (/.SH/) { + elsif (/^.SH/) { $skippara=0; $inlist=0; } diff --git a/doc/bugs/importfeed_fails__44___bad_feed_content.mdwn b/doc/bugs/importfeed_fails__44___bad_feed_content.mdwn index 2435e3304..4ee312be0 100644 --- a/doc/bugs/importfeed_fails__44___bad_feed_content.mdwn +++ b/doc/bugs/importfeed_fails__44___bad_feed_content.mdwn @@ -32,3 +32,5 @@ Saving to: ‘/tmp/feed12649’ warning: bad feed content ok """]] + +> upstream bug <https://github.com/sof/feed/issues/5> ; [[done]] --[[Joey]] diff --git a/doc/bugs/manpage_has_slight_indentation_error.mdwn b/doc/bugs/manpage_has_slight_indentation_error.mdwn index fd6f5ea06..56d9d2266 100644 --- a/doc/bugs/manpage_has_slight_indentation_error.mdwn +++ b/doc/bugs/manpage_has_slight_indentation_error.mdwn @@ -34,3 +34,5 @@ index ba5919b..b3ee404 100755 """]] -- [[anarcat]] + +> [[applied|done]] --[[Joey]] diff --git a/doc/related_software.mdwn b/doc/related_software.mdwn index e436092a3..024a155e3 100644 --- a/doc/related_software.mdwn +++ b/doc/related_software.mdwn @@ -10,4 +10,3 @@ designed to interoperate with it. * [sizes](http://hackage.haskell.org/package/sizes) is another du-like utility, with a `-A` switch that enables git-annex support. * Emacs Org mode can auto-commit attached files to git-annex. -* [[todo/nicer whereis output]] improves the output of the whereis command to be more human-readable. diff --git a/doc/todo/mdwn2man:_make_backticks_bold.mdwn b/doc/todo/mdwn2man:_make_backticks_bold.mdwn index 87c228ab8..21707a309 100644 --- a/doc/todo/mdwn2man:_make_backticks_bold.mdwn +++ b/doc/todo/mdwn2man:_make_backticks_bold.mdwn @@ -18,3 +18,5 @@ index ba5919b..7f819ad 100755 """]] I tested it against the git-annex manpage and it seems to work well. --[[anarcat]] + +> [[done]], thanks --[[Joey]] diff --git a/doc/todo/nicer_whereis_output.mdwn b/doc/todo/nicer_whereis_output.mdwn index 79c4ba02c..bfcfa73e5 100644 --- a/doc/todo/nicer_whereis_output.mdwn +++ b/doc/todo/nicer_whereis_output.mdwn @@ -79,3 +79,10 @@ Implementation notes 20:49:37 <joeyh> gah, typos 20:49:45 <joeyh> suppose you don't need the RemoteName either """]] + +> So, I incorporated this, in a new remotes command. +> Showing all known repositories seemed a bit much +> (I have 30-some known repositories in some cases), +> so just showing configured remotes seems a good simplification. +> [[done]] +> --[[Joey]] |