We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you for sharing this code :).
The code seems to break when using the numbered option:
.. toctree:: :numbered: :maxdepth: 2 :caption: contents: ...
I think it crashes because the figure numbers are also numbered per section, e.g. (2.1) instead of (1). Then this line breaks:
sphinxcontrib-pseudocode/sphinxcontrib/pseudocode.py
Line 114 in c9ee00a
With some playing arround, I got it somewhat working by fixing the parentId to 1. I am not sure where this parentId is used for?:
parentId
1
try: int(pairs['id']) except Exception: parentId = 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for sharing this code :).
The code seems to break when using the numbered option:
I think it crashes because the figure numbers are also numbered per section, e.g. (2.1) instead of (1). Then this line breaks:
sphinxcontrib-pseudocode/sphinxcontrib/pseudocode.py
Line 114 in c9ee00a
With some playing arround, I got it somewhat working by fixing the
parentId
to1
. I am not sure where this parentId is used for?:The text was updated successfully, but these errors were encountered: