dlang-community / harbored-mod

A documentation generator for D with support for both DDoc and Markdown.
Boost Software License 1.0
18 stars 14 forks source link

Documentation for public imports. #50

Closed 9il closed 9 years ago

9il commented 9 years ago

It is useful stuff for packages:

///
module distribution;

///
public import distribution.cdf;
///
public import distribution.pdf;
///
public import distribution.quantile;
///
public import distribution.random;
kiith-sa commented 9 years ago

This is a good idea.

I implemented it (2ecac07c1aa52e9f334f8ea67308c971e7f9e08e); but the individual imports are not documentable - I think a quick list (multi-column on wide screens) of module links makes more sense; e.g. I often have a lot of public imports and simply want to see them at glance.

9il commented 9 years ago

Thanks!