Results 245 comments of Geoffrey Poore

If you aren't using a Jupyter kernel, you can use `.cb.expr`. If you need a Jupyter kernel, there currently isn't a way to get raw inline text instead of verbatim...

Using print would be a solution, since that avoids the kernel's rich output and uses stdout instead. I've been working on adding support for things like `show=rich_output:plain:raw`, and should have...

No, there is not per-chunk caching, since that's not really practical across languages. In the future, it may be possible to have per chunk caching for some languages, as long...

I looked at Pylightnix, and was also wondering about dealing with global state. You can basically think about the code chunks as a list of strings, with each string being...

A pipe might work. Saving the pipe and then passing it as an argument for the next document build might not be necessary. I'm interested in adding a new mode...

The current built-in code execution system is based on templates. The code from the Markdown document is extracted from the Pandoc AST, then inserted into templates to create a source...

I've looked over this and have some comments now. I'll go over it again a final time in more detail to double-check everything once you are ready to merge. *...

For flushing output: All the existing templates for languages flush stdout and stderr, but that's because there's an assumption that these typically won't be line buffered. If GAP automatically flushes...

This is fixed by the newly reimplemented `\mintinline`.

Sorry for the delay...I've been focused on updating the Codebraid VS Code extension recently, and am now back to working on Codebraid itself. This looks good, so I've merged it....