Literate.jl
Literate.jl copied to clipboard
Simple package for literate programming in Julia
Closes #199 Changes: - parse properly Quarto arguments `#| echo:false` - provide Quarto-specific codefence (refactored to a separate function) - save files with extension `.qmd` - all functionality tested -...
It would be amazing to add support Quarto markdown flavour User story: As an analyst, I would like to write my script in Literate.jl format and easily convert to Quarto...
It would be cool, if interpolation into md-strings worked. For example: ```julia result_of_some_calc = 3 md""" The result of this tricky calculation is $result_of_some_calc """ ``` currently produces via `Literate.notebook("tmp.jl",...
It would be great to have a way to configure some settings **per block**: 1. Display Controls whether to display or not this section. 2. Execute Whether to execute or...
currently, when executing the Literate script, it redirects the IO to a buffer https://github.com/fredrikekre/Literate.jl/blob/master/src/Literate.jl#L495 this is not very consistent with what people will see in a REPL and could be...
I tried to convert ~~~ using Latexify latexify("x/y") |> display ~~~ to markdown. But the output is not captured. I also tried ~~~ using Latexify latexify("x/y") |> display ~~~ But...
In jupyter notebooks, you can create cells of raw type, where you can put whatever you want in it. I am using it to add some LaTeX code using this...
Hi, thanks a lot for creating this great package! I was wondering if it's possible, and within its scope, to make it language-agnostic. The reason is that I have some...
I'm not sure if this is issue on side of Literate, or Documenter, or both and fix needs to be applied to both of them. When I generate markdown, execute...