From 10191ed748473e80ded37fef914e6750e5e57169 Mon Sep 17 00:00:00 2001 From: Sam Landfried Date: Sat, 15 Jul 2017 11:18:18 -0600 Subject: [PATCH] Fix Markdown formatting Headers were missing a space, so `####` was rendering as text --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a22c3719..6fedfc2f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Prerequisites for installation: [Node.js](https://nodejs.org/) and [Git](https:/ 2. Go to the root directory of repository: `cd t2-cli`. 3. Create a symbolic link: `npm link --local`. -####Windows +#### Windows You may encounter the following error when executing `npm link` on windows: ``` 19798 error Windows_NT 6.3.9600 @@ -38,7 +38,7 @@ You may encounter the following error when executing `npm link` on windows: ``` This error occurs because of windows folder permissions. To resolve this make sure you are running cmd or powershell as an administrator and that the permissions on the node_modules folder is set to full control for the user. -####Source Tab Completion +#### Source Tab Completion For bash users, add this line to your `~/.bashrc` or `~/.bash_profile` file: `source /PATH/TO/t2-cli/bash_completion`