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
MWE:
test.jl:
test.jl
begin # this is comment in code x = 1 end
If I run
Literate.markdown("test.jl", ".")
I get the following output:
````@example test begin ```` this is comment in code ````@example test x = 1 end ````
instead I want
````@example test begin # this is comment in code x = 1 end ````
Is this a limitation of Literate.jl or am I doing it incorrectly?
The text was updated successfully, but these errors were encountered:
Use double hash for comments
begin ## this is comment in code x = 1 end
see https://fredrikekre.github.io/Literate.jl/v2/fileformat/#Syntax
Sorry, something went wrong.
Thanks!
No branches or pull requests
MWE:
test.jl
:If I run
I get the following output:
instead I want
Is this a limitation of Literate.jl or am I doing it incorrectly?
The text was updated successfully, but these errors were encountered: