I've got two modules:
first_module
containing functions a
, b
and c
second_module
containing functions d
, e
and f
I would like to generate an HTML documentation using pdoc
such that it
doesn't document both modules in whole, but rather contains only functions b
, e
, and f
.
Any ideas?