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
I've encountered a bug where the use of a double quotes string in an assigment command before using a single quote string as an argument, seems to cause a bug. It only happens if it's a class method. A minimal example (defined as part of package 'Package') is:
classdef Test
methods
function obj = raiseError(obj)
errStr = "Hello World";
error('ErrorID', errStr)
end
end
end
The output from sphinx is then something like:
WARNING: [sphinxcontrib-matlabdomain] Parsing failed in +Package.Test. Check if valid MATLAB code.
I installed into Anaconda through PyPi:
sphinxcontrib-matlabdomain 0.11.1 pypi_0 pypi
The text was updated successfully, but these errors were encountered:
* Working on #103
Fixed issue with order of single and double quoted strings. It got the
lexer to produce incorrect tokens.
* Updated changes for version 0.11.2
Hi,
I've encountered a bug where the use of a double quotes string in an assigment command before using a single quote string as an argument, seems to cause a bug. It only happens if it's a class method. A minimal example (defined as part of package 'Package') is:
The output from sphinx is then something like:
I installed into Anaconda through PyPi:
The text was updated successfully, but these errors were encountered: