Open schloerke opened 1 year ago
Similar to R's {pkgdown}, I'd like to use startsWith("foo") or a wild card foo* to signify anything that matches the pattern.
{pkgdown}
startsWith("foo")
foo*
Ex:
I have 25 functions under my_module that I'd like displayed. It would be nice if I could say:
my_module
quartodoc: style: pkgdown dir: reference package: mypkg sections: - title: Some functions desc: Functions to inspect docstrings. contents: - my_func - my_module.*
instead of
quartodoc: style: pkgdown dir: reference package: mypkg sections: - title: Some functions desc: Functions to inspect docstrings. contents: - my_func - my_module.func1 - my_module.func2 - my_module.func3 - my_module.func4 - my_module.func5 - my_module.func6 - ....
This is low priority
Related to #80
Similar issue arose for plotnine, where @has2k1 mentioned this would save him from typing many function names. In general, some kind of selection (e.g. pkgdown uses tidyselect) would be pretty handy
Similar to R's
{pkgdown}
, I'd like to usestartsWith("foo")
or a wild cardfoo*
to signify anything that matches the pattern.Ex:
I have 25 functions under
my_module
that I'd like displayed. It would be nice if I could say:instead of
This is low priority