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
Rendering nbCode block to markdown produces invalid code as special characters are being escaped.
nbCode
Minimal code to reproduce issue:
import nimib nbInitMd nbCode: let test = "hello world" nb.filename = "test.md" nbSave
will produce:
'''nim let test = "hello world" '''
The text was updated successfully, but these errors were encountered:
thanks for reporting this! A bug introduced in 0.3.0 refatoring. Putting here notes for the fix:
nimib/src/nimib/renders.nim
Line 70 in ad0e44b
&
nbImage
In case you want to try a PR @srozb, let us know :)
Sorry, something went wrong.
I've already switched to html backend but appreciate a lot your help on the discord.
I think adding appropriate test case would be helpful to prevent such regression in future.
843677a
No branches or pull requests
Rendering
nbCode
block to markdown produces invalid code as special characters are being escaped.Minimal code to reproduce issue:
will produce:
The text was updated successfully, but these errors were encountered: