public
Description: YUI Javascript Documentation Tool
Homepage: http://yuilibrary.com/projects/yuidoc
Clone URL: git://github.com/yui/yuidoc.git
commit  9e4e1282f74dd03919fb97984d54beddd7945fdb
tree    5beaedb4903ed6f86e9d4333ae22bb06d67e47c1
parent  005f9992449cd5676e4c9f36eb57532a89e3f4bf
yuidoc / KNOWN_ISSUES
100644 27 lines (18 sloc) 0.725 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
**************************************************************************
Mapping Files to Modules:
 
Because a single @module is supported for a set of files, the parser expects that all files in
the input directory belong to the same module. If multiple modules exist either in the source
directory or in any subdirectory, files may get mapped to modules incorrectly.
 
For example:
 
sourcedir/
    module1.js
    module2.js
 
sourcedir/
    module1/
        foo.js
    module2/
        bar.js
 
$ yuidoc.py sourcedir
 
The workaround is to use the second pattern and pass the source directory for each module to yuidoc
 
$ yuidoc.py module1 module2
 
**************************************************************************