From ebb06c165731bc53e5e35760f102e2577ec4c450 Mon Sep 17 00:00:00 2001 From: Mulia Nasution Date: Wed, 9 May 2018 10:46:45 +0700 Subject: [PATCH] Fix >| symbol The `>|` symbol not renders correctly because it's inside of a table. Notice table in markdown also use `|` symbol. --- modules/directory/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/directory/README.md b/modules/directory/README.md index 5677251..38fda74 100644 --- a/modules/directory/README.md +++ b/modules/directory/README.md @@ -15,4 +15,4 @@ ZSH options | PUSHD_TO_HOME | pushd without arguments acts like `pushd ${HOME}` | | EXTENDED_GLOB | Treat `#`, `~`, and `^` as patterns for filename globbing | | MULTIOS | Performs implicit tees or cats when using redirections | -| NO_CLOBBER | Disables overwrite existing files with `>`. Use `>|` or `>!` instead | +| NO_CLOBBER | Disables overwrite existing files with `>`. Use `>\|` or `>!` instead |