From: W. Trevor King Date: Wed, 24 Nov 2010 19:36:13 +0000 (-0500) Subject: More TAB -> space replacements. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e6f93554b30642a9039b3da04f099b816b344979;p=mw2txt.git More TAB -> space replacements. --- diff --git a/posts/Gentoo_overlay.mdwn b/posts/Gentoo_overlay.mdwn index a3a5c3a..9fd2bf8 100644 --- a/posts/Gentoo_overlay.mdwn +++ b/posts/Gentoo_overlay.mdwn @@ -21,7 +21,7 @@ personal `layman.xml`). The overlay is a fairly strange mix: ([Gentoo 65200](http://bugs.gentoo.org/65200)) - media-sound/abcmidi ([Gentoo 76017](http://bugs.gentoo.org/76017), - also in the [Sunrise overlay][]) + also in the [Sunrise overlay][]) - sci-physics/hooke (my branch of the [[Hooke]] [[force spectroscopy]] analyzer) - sci-physics/sawsim diff --git a/posts/MPD_playlist_duration.mdwn b/posts/MPD_playlist_duration.mdwn index e08180c..dc38dae 100644 --- a/posts/MPD_playlist_duration.mdwn +++ b/posts/MPD_playlist_duration.mdwn @@ -9,7 +9,7 @@ playlist, and searching around brought me to Repolho's [post][] which I've condensed to: $ mpc --format '%time%' playlist | awk -F ':' 'BEGIN{t=0} {t+=$1*60+$2} END{print strftime("%j %H:%M:%S", t, 1)}' - 001 10:48:35 + 001 10:48:35 Note that, unfortunately, `%j` returns the day of the year in the range `[001,366]`, so an empty playlist would return `001 00:00:00`, diff --git a/posts/Splittable_kwargs.mdwn b/posts/Splittable_kwargs.mdwn index d41d30e..c5aebef 100644 --- a/posts/Splittable_kwargs.mdwn +++ b/posts/Splittable_kwargs.mdwn @@ -55,7 +55,7 @@ example becomes ... return b >>> @splittableKwargsFunction(A,B) >>> def C(**kwargs): - ... akw,bkw = C._splitargs(C, kwargs) + ... akw,bkw = C._splitargs(C, kwargs) ... return A(**bkw)+B(**akw) >>> C(a=3,b=4) 7