-h, --help output usage information
-V, --version output the version number
-O, --obj <str> javascript options object
-o, --out <dir> output the compiled html to <dir>
-p, --path <path> filename used to resolve includes
-P, --pretty compile pretty html output
-c, --client compile function for client-side runtime.js
-D, --no-debug compile without debugging (smaller functions)
-w, --watch watch files for changes and automatically re-render
So CK2 can use these useful features:
-O, --obj <str> javascript options object
-o, --out <dir> output the compiled html to <dir>
-p, --path <path> filename used to resolve includes
-P, --pretty compile pretty html output
-c, --client compile function for client-side runtime.js
But it can only
-P, --pretty compile pretty html output
Why?
--obj is a cornerstone for me. I cannot compile my Jade projects without it, data are in json files.
Jade can:
So CK2 can use these useful features:
But it can only
Why?
--obj
is a cornerstone for me. I cannot compile my Jade projects without it, data are injson
files.