Skip to content

Commit

Permalink
Improve indentation in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
kachkaev committed Nov 12, 2023
1 parent 31e8b64 commit 5fbbcdd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions documents/tutorials/introduction/installingLitvis.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ All your datavis work with Litvis should be in a 'project'. The instructions bel

- **Open a command window (type `cmd` in the search field of the task bar in Windows, or `applications->utilities->terminal` on a Mac). In this command window / terminal, enter the following (you can copy and paste the block of lines into the terminal window):**

```txt
cd Documents
mkdir datavis
cd datavis
npm init --yes
npm install prettier prettier-plugin-elm
echo "{ \"plugins\": [\"prettier-plugin-elm\"] }" > .prettierrc.json
```

If you ever need to set up new litvis projects, create an appropriate folder on your computer, open up a terminal, change to that folder (using `cd`) and issue the last three lines as above (from `npm init --yes` onwards).
```txt
cd Documents
mkdir datavis
cd datavis
npm init --yes
npm install prettier prettier-plugin-elm
echo "{ \"plugins\": [\"prettier-plugin-elm\"] }" > .prettierrc.json
```

If you ever need to set up new litvis projects, create an appropriate folder on your computer, open up a terminal, change to that folder (using `cd`) and issue the last three lines as above (from `npm init --yes` onwards).

- **Close the command window / terminal by typing `exit`**

Expand Down

0 comments on commit 5fbbcdd

Please sign in to comment.