From 3526512f0fb70da878c055231c86fe921451f01a Mon Sep 17 00:00:00 2001
From: Sylvain Arreckx <sylvain.arreckx@gmail.com>
Date: Tue, 10 Jan 2017 17:34:37 +0100
Subject: [PATCH] Update install instructions.

---
 README.md | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/README.md b/README.md
index 011ce1d7..6417c06b 100644
--- a/README.md
+++ b/README.md
@@ -10,38 +10,38 @@
 ## Installation
 
 - Update your system
-```
+```bash
 sudo apt-get update
 sudo apt-get upgrade
 sudo apt-get install build-essential openssl libssl-dev curl
 ```
 
 - Install Node
-```
+```bash
 sudo apt install npm
 npm install --global npm@latest
 ```
 
 - Under Unix, create a symbolic link for `node`
-```
+```bash
 sudo ln -s /usr/bin/nodejs /usr/bin/node
 ```
 
 - Install Yeoman, bower and grunt
-```
+```bash
 sudo npm install --global yo
 npm install -g generator-reveal
 npm install -g grunt-cli
 npm install -g bower
 ```
 
-- Install other dependencies
-```
+- Move to the cloned repository and install other dependencies
+```bash
 npm install && bower install
 ```
 
 ## Serve
-```
+```bash
 grunt
 ```
 
@@ -57,7 +57,3 @@ $ yo reveal:slide --markdown --attributes --notes "Slide Title"
 grunt dist
 grunt gh-pages
 ```
-
-## TODO
-
-1. Use http://www.commitstrip.com/wp-content/uploads/2013/11/Strips-_Old-650-finalfinal1.jpg
-- 
GitLab