From d9e777eaa76128e1a3a5455ad78ca0536659f52b Mon Sep 17 00:00:00 2001 From: Andrei Cacio Date: Fri, 14 Oct 2016 20:50:59 +0300 Subject: [PATCH] Updated the README file - added syntax highlighting on some code snippets --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ee02332..7c161e8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Update System.js config. This is needed to map import of angular2-log to the right folder. *( I do not really get why it's needed, so if anybody have a clue or an answer, please let me know !)* -``` +```javascript System.config({ map: { 'angular2-log': 'node_modules/angular2-log' @@ -72,14 +72,14 @@ By default the demo app does NOT have any dependencies over angular2-log, you ha You can choose between two differents approach: * Using npm install: -``` +```bash cd angular2-log/demo npm install angular2-log ``` * Using npm link: -``` +```bash cd angular2-log [sudo] npm link cd angular2-log/demo @@ -87,7 +87,7 @@ cd angular2-log/demo ``` Once this is done: -``` +```bash gulp demo ```