I'm using jsdoc3 for my project and everything compiles nicely.
But this I've been fiddling with for the last 2 days and I give up :(
When using the most basic call from MacOsX Terminal to run jsdoc I ALWAYS get the full path of my source file within the generated documentation.
Example:
./jsdoc ../projectname/js/jsfile.js
In the generated index file I can see a h1 with "index" and below it a h2 with the full path to the js file:
/Users/username/projects/path/projectname/js/jsfile.js
I don't like that it shows my complete local path...
After reading up I thought it would be relative to where I run jsdoc from.
But all this has the same exact result:
cd /Users/username/projects/path/projectname
../jsdoc-master/jsdoc js/jsfile.js
as well as
cd /Users/username/projects/path/projectname/js
../../jsdoc-master/jsdoc jsfile.js
The problem is, that this path is also used with the line number references and on the sourcecode page. And it's really not nice that my internal path is displayed...
The output I would want is projectname/js/jsfile.js
or at least just jsfile.js
, but I can not for the life of me get this to work.
I hope someone can tell me what I'm doing wrong.
regards,
Jan
and unordered is
... I use unordered lists in my readme, which I include in my docs. So in compliance with markdown syntax I use * xzy Also tried + and -, no luck. 3.2.2 just doesnt parse it properly - 3.3.0 does.
– Jan Paepke Feb 28 '14 at 12:06