You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful to auto-document the argument blocks of a function, and show the argument types, validations, and comments. For example, the following argument block in MATLAB
arguments
var string %It is a string
end
can be converted to a docstring
:param string var: It is a string
The text was updated successfully, but these errors were encountered:
@XiaoCasd and anyone else interested in this feature:
With the merging of #261 into main this feature now should work (and is tested in test_parse_mfile). I am not yet ready to cut a new release as I want to write a few more tests to verify that the new parsing works correctly for the newly supported features (enumerations, argument blocks, and events) and that the output for these is correct. If you have any feedback I would be happy to hear it.
I will close this issue as completed in the next release.
It would be helpful to auto-document the argument blocks of a function, and show the argument types, validations, and comments. For example, the following argument block in MATLAB
can be converted to a docstring
The text was updated successfully, but these errors were encountered: