I am using a config variable called mode to generate draft/publishable decks
draft: library files are directly read and served from the package library so that working directory stays uncluttered.
selfcontained: library files are copied to the slide directory and read and served from there, so that the working directory is standalone and can work offline as well. This mode is useful for publishing to github or dropbox.
standalone: library files are read from the package library or working directory based on url$lib, and served from GoogleCode as CDN. Images are embedded inline using base64. Custom assets are combined and minified and inlined in the HTML. This mode is useful for publishing to RPubs or sharing a standalone HTML file.
I am using a config variable called
mode
to generate draft/publishable decksdraft
: library files are directly read and served from the package library so that working directory stays uncluttered.selfcontained
: library files are copied to the slide directory and read and served from there, so that the working directory is standalone and can work offline as well. This mode is useful for publishing to github or dropbox.standalone
: library files are read from the package library or working directory based on url$lib, and served from GoogleCode as CDN. Images are embedded inline using base64. Custom assets are combined and minified and inlined in the HTML. This mode is useful for publishing to RPubs or sharing a standalone HTML file.