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
Literate wraps code in Documenter @example blocks when documenter=true, so add the ability to generate normal Julia blocks for source we want included in generated markdown/scripts/notebooks but don't want to execute during build process.
The text was updated successfully, but these errors were encountered:
# Now just call the function to see the visualizer appear!#md # ```julia#md # viz_hopper_NPG()#md # ```#jl viz_hopper_NPG()#nb viz_hopper_NPG()#md # You should see the following:#md # 
Which would leave just the line viz_hopper_NPG() in the generated Julia scripts and Jupyter notebooks, and a formatted, un-executed code block in the Markdown.
Literate wraps code in Documenter
@example
blocks whendocumenter=true
, so add the ability to generate normal Julia blocks for source we want included in generated markdown/scripts/notebooks but don't want to execute during build process.The text was updated successfully, but these errors were encountered: