Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation cannot be generated #8

Open
masteinhauser opened this issue Jul 1, 2012 · 10 comments
Open

Documentation cannot be generated #8

masteinhauser opened this issue Jul 1, 2012 · 10 comments

Comments

@masteinhauser
Copy link

This might be just an issue I have come across, but it appears that dox no longer supports generating documentation from a list of files or directories but instead operates only over stdio. I'm working on fixing Jakefile.js to use dox properly, but if you know why this doesn't build I would be greatly appreciative!

@beatak
Copy link

beatak commented Dec 11, 2014

I vote for this. And also dox doesn't support html anymore??? Not sure, but at the same time, there's jsdoc and it seems working well. What I did is:

find lib -name '*.js' -type f | xargs jsdoc

@callcter
Copy link

@beatak work!

@dawez
Copy link

dawez commented Jan 27, 2019

Question: Would be possible to add the generated documentation directly to this repository?

@pacostas
Copy link

pacostas commented Sep 2, 2019

Hello, where i can find the documentation about this library?

@ChangXiaoning
Copy link

I also have the question: I just generate the file documentation.json using the command jake doc && open documentation.html. Why not add the documentation directly to this repository?

@n3h3m
Copy link

n3h3m commented Jan 28, 2020

Oh please, give us the documentation like. The whole Jake project in Github gives 404 :p

@miparnisari
Copy link
Contributor

dox doesn't support html anymore???

Apparently not... this is a bit of a problem. Not sure how to get documentation.json in a human-readable way...

@whyboris
Copy link

whyboris commented Jun 11, 2020

I have just tried out jsdoc-to-markdown with this repository and got something sensible.

To replicate:

  1. npm i jsdoc-to-markdown
  2. add "scripts": { "doc": "jsdoc2md lib/deps/graph.js > doc.md" } to the package.json
  3. run npm run doc 🤷
  4. Open the doc.md file in something that can display markdown in a pretty way 😅

It's at least something 😉

@prantlf
Copy link

prantlf commented Jun 12, 2020

How about removing dox and using jsdoc-to-markdown? A generated API.md could be included in the repository.

@dummey
Copy link

dummey commented Jul 15, 2020

I ended up using jsdoc and it's pretty usable (it also knows to pull in the readme.md for its index which is nice).

$ npm install -g jsdoc
$ jsdoc -r *

screencapture-file-Users-ricky-ng-Code-hugo-node-graphviz-out-graphviz-0-0-9-index-html-2020-07-15-12_32_07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests