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
doctest(Module; fix=true)
I made a minimal working example. My doctest looks similar to:
``` jldoctest label julia> a = ("a", "b", "c"); julia> a ```
(I left the output empty on purpose to trigger the error.) Running Documenter.jl to fix the doctest gives:
```jldoctest label julia ("a", "b", "c")> a = ("a", "b", "c"); julia> a ```
It seems like some regex is replacing the first appearance of a with the command + correct output, instead of the actual command + (wrong) output.
a
The text was updated successfully, but these errors were encountered:
MonomialBasis
Successfully merging a pull request may close this issue.
I made a minimal working example. My doctest looks similar to:
(I left the output empty on purpose to trigger the error.)
Running Documenter.jl to fix the doctest gives:
It seems like some regex is replacing the first appearance of
a
with the command + correct output, instead of the actual command + (wrong) output.The text was updated successfully, but these errors were encountered: