aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 21:37:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 21:37:06 +1300
commitd84e4f10842922eea06a16eb9e6e99f1a0df6fee (patch)
tree7cd57c62899b5fbaebbb3b0533a8ecd811e63547
parentMerge branch 'release/v10.17.0' into develop (diff)
downloaddotfiles-d84e4f10842922eea06a16eb9e6e99f1a0df6fee.tar.gz
dotfiles-d84e4f10842922eea06a16eb9e6e99f1a0df6fee.zip
Escape underscores in Markdown
-rw-r--r--TABS.md4
1 files 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.