dmd
dmd copied to clipboard
@category grouping should also apply in the global index
I have the following js (simple.js):
/**
* foo!
* @category A
*/
function foo(){}
/**
* bar!
* @category A
*/
function bar(){}
/**
* baz!
* @category B
*/
function baz(){}
/**
* foobar!
* @category B
*/
function foobar(){}
Running through jsdoc2md -g grouped simple.js gives me a global index in this format:
## Functions
* [foo()](#foo)
* [bar()](#bar)
* [baz()](#baz)
* [foobar()](#foobar)
I really really want those globals grouped by categories. --group-by didn't seem to have any effect. Is this not a supported feature, or am I using it wrong?
Hi! Yes, those globals should be grouped too. I will look into this soon, thanks.