pub-doc
http://jldec.github.io/pub-doc/
This website is generated from markdown using pub-server
To edit the site locally, clone this repo, then
npm install
To preview at http://localhost:3001/ while you edit the markdown (using any editor).
npm run develop
The browser preview will auto-reload whenever you save a file.
To generate a new set of html and copy static files into ./out.
npm run generate
To preview the generated static output at http://localhost:3001/
npm run static
To publish to gh-pages, first commit generated ./out
in master, then
git checkout gh-pages
git read-tree -u -m master:out
git commit -m 'publish to gh-pages'
git push
git checkout master