문제

im searching for a Documentation Framework that supports the following features:

  • Generated from Code Comments
  • Searchable
  • Styling customizable
  • NTH: Linked references (If i reference a class somewhere class name should be linked to class documentation)

I want to use it to document an RESTfull API i'm working on

I know about YARDoc, but would be nice to gather some alternatives

도움이 되었습니까?

해결책

Matt Silverman created a pretty comprehensive lists of what is available out there now for gen'ing docs from code.

http://www.mattsilverman.com/2013/02/tools-to-generate-beautiful-api-documentation.html

다른 팁

Apart from YARD, you can generate RDOC project documentation using the following rake task:

rake doc:app

After this, your docs will be located in the doc/app folder and can be viewed by opening the index.html file in your browser. It will include the (currently probably generic) doc/README_FOR_APP file.

Hope this helps :)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top