harbored-mod icon indicating copy to clipboard operation
harbored-mod copied to clipboard

A documentation generator for D with support for both DDoc and Markdown.

Results 39 harbored-mod issues
Sort by recently updated
recently updated
newest added

What about generation [PlantUML](http://plantuml.sourceforge.net/) with some settings ( for example show fields or not )? It can be a good part of documentation. It's planed?

enhancement
difficulty-hard

Single-file HTML output. - No sidebar by default, just a TOC on top - Optional fixed-pos sidebar Once done, we can consider PDF (and maybe other formats?) using `wkhtmltopdf` or...

enhancement
difficulty-hard

Currently we generate docs for everything with a doc comment regardless of protection attribute. Allow teh user to disable private/package/protected. By default, only `public` and `protected` members of non-`final` classes...

enhancement
difficulty-easy
priority-high

Cross-referencing does not handle function and template parameters at the moment. Parameters should be considered children of their function/class/template/whatever so e.g. methods of a templated class can refer to its...

enhancement
difficulty-medium

Documentation of a class should point to its parent class/interfaces with links, and also point to all its derived classes, including indirectly derived (but make it evident they're derived indirectly;...

enhancement
difficulty-medium

Collect all functions, classes and other items (reuse/modify `visitor.Item`), together with their source locations, fully qualified names, how many times each item is referenced, etc. (Keep the AST node of...

difficulty-medium
priority-high

Inherited methods should point to their docs in their parent classes, and should show up in some way even if they don't have a documentation comment in the derived class....

enhancement
difficulty-medium

Currently, TOC tree folding is reset when changing page. It should be possible to make it persistent using [localStorage](https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Storage) (I know little about JS, so not sure about how easy/difficult...

enhancement

Currently, every package in the TOC tree is folded by default (if JavaScript is not disabled). This is not always user-friendly, e.g. when using a few nested packages in a...

enhancement