This is the example repository for the talk "Getting Started with Sassdoc and Styledown" for the PDX Sass meetup.
http://www.meetup.com/pdxSass/events/219617864/
To get the build scripts running, you'll need to do the following:
-
Run a few commands in the root to install Gulp and Grunt globally:
$ [sudo] npm install -g gulp $ [sudo] npm install -g grunt -
Install the Sassdoc theme dependencies:
$ cd sassdoc-theme-example $ npm install -
Execute either the Gulp or Grunt build:
$ cd ../ $ gulp$ cd ../ $ grunt
To edit the Sassdoc theme, you'll need to:
-
Install some more packages globally:
$ [sudo] npm install -g jshint babel@4.7.16 $ [sudo] gem install sassNOTE: As of this writing, the Sassdoc default theme, from which we forked our example, does not work with Babel 5.0.0 or later. As such we specify Babel 4.7.16 for installation.
-
In the
sassdoc-theme-exampledirectory, edit the markup (views), CSS (scss), and assets (assets) as desired. -
From the
sassdoc-theme-exampledirectory execute:makeThis compiles the Sassdoc theme.
-
Execute either the Gulp or Grunt build to build the new documentation with the updated theme.