sphinx-contrib / matlabdomain

A Sphinx extension for documenting Matlab code
http://sphinxcontrib-matlabdomain.readthedocs.io/
Other
70 stars 45 forks source link

:undoc-members: option for .. autoclass:: directive does not seem to work #76

Closed RmStorm closed 6 years ago

RmStorm commented 6 years ago

I try to add undocumented members like this: .. autoclass:: :members: :undoc-members: but they do not show up in the compiled document. Except the first undocumented member. That one always shows up. Is this a bug? Or simply not implemented yet?

joeced commented 6 years ago

Works for me. You have to put the class name after .. autoclass::, like

.. autoclass:: MyClass
   :members:
   :undoc-members: