sphinx-contrib / matlabdomain

A Sphinx extension for documenting Matlab code
Other
64 stars 45 forks source link

Parse class folder methods correctly #213

Closed joeced closed 11 months ago

joeced commented 11 months ago

Previously, A class folder definition, @ClassFolder WAS treated like a collection of a module, class with methods and free functions.

Module:  target.@ClassFolder
   Class:     target.@ClassFolder.ClassFolder
   Functions: target.@ClassFolder.method_in_file

Now, we transform this into a single class definition, that can be referenced with:

Class: target.ClassFolder

This fixes #56. However, #44 is not solved by this.