Literate.jl
Literate.jl copied to clipboard
Simple package for literate programming in Julia
I have some `display()` calls in my code, but it seems they're not showing up in the generated markdown. #128 marks this as fixed, but perhaps it only fixed it...
In https://github.com/MarkNahabedian/MattParkerJigsawPuzzleProblem.jl I'm trying to use Literate and Documenter to generate documentation. The `docs/make.jl` script first walks the source hierarchy and uses `Literate.markdown` to process each Julia source file and...
Hi, as of lately, I get an error when running Literate + Documenter locally. The macro `@__BINDER_ROOT_URL__` is iterpreted as ``, which seems to throw an error in the latest...
I understand the motivations for why Literate evaluates things in a temporary non-Main module, but it makes simple things like this file fail: ```julia using Distributed @everywhere x = 1...
I am big fan of literate programing (in theory...), and for many years I used a home-spun vanilla C utility that stripped LaTeX comments out of my source files to...
If a cell causes a warning, I would like to have that included in a rendered Markdown document. How would I achieve this? ``` function maywarn() @warn "whoopsie" 42 end...
If a cell prints anything to stdout, the cell's return value occupies a line inside the output's code fence, even it is hidden: ``` # Does not produce output: x...
Following #267 I implemented (basically copying your code) support for callout quarto blocks. I added a test (hope it works, as I add plenty of weird message trying to run...
It seems that Quarto format for callout blocks is different that usual markdown flavor, [see here](https://quarto.org/docs/authoring/callouts.html). Example instead of ``` !!! note My note ``` It is with Quarto ```...
According to the docs, > - The default code fence will change from > ```` > ```julia > # code > ``` > ```` > > to Documenters @example blocks:...