From d84e4f10842922eea06a16eb9e6e99f1a0df6fee Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 13 Nov 2020 21:37:06 +1300 Subject: Escape underscores in Markdown --- TABS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TABS.md b/TABS.md index 4c67052b..dd2be868 100644 --- a/TABS.md +++ b/TABS.md @@ -7,12 +7,12 @@ pretty nicely: $ find . -name .git -prune -o -name vim -prune -o -type f \ -exec sh -c \ 'for f;do unexpand -t4 "$f">"$f".tmp;mv "$f".tmp "$f";done' \ - _ {} + + \_ {} + $ find vim -name bundle -prune -o -type f \ -exec sh -c \ 'for f;do unexpand -t2 "$f">"$f".tmp;mv "$f".tmp "$f";done' \ - _ {} + + \_ {} + If you have GNU `unexpand(1)` and can add `--first-only` to each of those calls, the results seem perfect. -- cgit v1.2.3