Type: Enhancementhelp wanted
Métricas do repositório
- Stars
- (910 stars)
- Métricas de merge de PR
- (Mesclagem média 16d 9h) (3 fundiu PRs em 30d)
Description
A great feature of @autodocs is Filter. So, I can do for example:
```@autodocs
Modules = [CellArrays]
Order = [:type]
Filter = t -> typeof(t) !== CellArray
It seems to me natural to list first what @autodocs will show. Thus, in analogy, I would be tempted to do the selection for @index just the same way as for @autodocs:
```@index
Modules = [CellArrays]
Order = [:type]
Filter = t -> typeof(t) !== CellArray
However, to my surprise Filter is not supported for @index. Is there any particular reason for this or could this be added?