From be396655c45b8ca9b05bbf585385cd17d74a58c1 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 3 May 2020 21:20:54 -0400 Subject: [PATCH] Render 'export PATH' line correctly in docs Github renders double quotes in blockquotes with fancy curly (unicode) quotes. If folks copy this to their shell configs, they'll get weird PATH bugs! Seems neither org nor github can handle ~...~ syntax if either tilde is adjacent to a non-alphanumeric (like double quotes), so I just did away with them altogether. --- docs/getting_started.org | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/getting_started.org b/docs/getting_started.org index 5e04916a9..62dd8226f 100644 --- a/docs/getting_started.org +++ b/docs/getting_started.org @@ -343,9 +343,7 @@ provides, and ~bin/doom help COMMAND~ to display documentation for a particular #+begin_quote I recommend you add =~/.emacs.d/bin= to your ~PATH~ so you can call =doom= directly and from anywhere. Accomplish this by adding this to your .bashrc or -.zshrc file: - -~export PATH="$HOME/.emacs.d/bin:$PATH"~ +.zshrc file: ~export PATH=~/.emacs.d/bin:$PATH~ #+end_quote *** Install Doom Manually