Skip to content

Instantly share code, notes, and snippets.

@outsideris
Created November 2, 2011 18:48
Show Gist options
  • Save outsideris/1334502 to your computer and use it in GitHub Desktop.
Save outsideris/1334502 to your computer and use it in GitHub Desktop.
cakefile for epub
task 'epub', ->
exec 'pandoc -S --epub-stylesheet style.css -o output/nodebook.epub ' +
'chapters/prologue.md ' +
'chapters/overview.md ' +
'chapters/history.md ' +
'chapters/installation.md ' +
'chapters/gettingstarted.md ' +
'chapters/tcpchat.md ' +
'chapters/twitter.md ' +
'chapters/npm.md ' +
'chapters/express.md ' +
'chapters/socketio.md ' +
'chapters/simplechat.md ' +
'chapters/debugging.md ' +
'chapters/unittest.md ' +
'chapters/deploy.md ' +
'chapters/appendix.md', (err) ->
throw err if err
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment