April 2014
Intermediate to advanced
80 pages
1h 48m
English
First, create a folder called markdown, and inside of that folder create folders for the CoffeeScript files, the Sass files, and the assets folder, which is where our finalized JavaScript and CSS files will go.
| | $ mkdir markdown |
| | $ cd markdown |
| | $ mkdir coffeescript |
| | $ mkdir sass |
| | $ mkdir assets |
Next, we’ll need the Angular framework, the Markdown.js library for converting Markdown code to HTML, and the angular-sanitize library so we can push raw HTML back into the interface.[7][8][9] Without the sanitation library, Angular won’t let us use the output from the Markdown converter.
To get those libraries, we’ll use Bower like we did in Fetching Client-Side Libraries with Bower. Run ...
Read now
Unlock full access