Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : Create several docs which are side by side and independent from each other?

$
0
0
well, thinking about it sometimes work.

  1. load('steal/rhino/rhino.js');
  2. steal("documentjs", function(DocumentJS){
  3.     DocumentJS('myapp', {
  4.         out: 'myapp/docdev',
  5.         markdown : [
  6. //                    'myapp',
  7.                     'steal', 'jquerypp', 'can', 'funcunit'],
  8.         parent : 'myapp',
  9.                 templates : 'myapp/lib/doctemplates'
  10.     });
  11.         DocumentJS('', {
  12.         out: 'myapp/handbuch',
  13.         markdown : ['myapp'],
  14.         parent : 'myapp',
  15.                 templates : 'myapp/lib/doctemplates'
  16.     });
  17. });

works. It is a workaround but dev-doc can be separated from manuals.


Viewing all articles
Browse latest Browse all 3491

Trending Articles