Results 245 comments of Geoffrey Poore

You might look into Pandoc filters. * https://pandoc.org/lua-filters.html * https://pandoc.org/filters.html For example, create `inline_cb.lua`: ```lua Code = function(elem) if string.sub(elem.text, 1, 3) == "py " then elem.text = string.sub(elem.text, 4,...

I need to clarify the documentation on this. By default, when you pass Pandoc multiple files, it treats them all as one. Codebraid does the same thing, so the code...

It looks like all releases since 6.1.12 have had issues and will be replaced with an upcoming 7.0.0: https://github.com/jupyter/jupyter_client/blob/master/docs/changelog.rst. The Codebraid error is likely related to https://github.com/jupyter/jupyter_client/blob/master/docs/changelog.rst. I'm guessing that...

Thanks for the update. I've been working on the next version of Codebraid for several months. To support several new features, I'm reimplementing much of the core as async, including...

This should be fixed in the latest release. All interaction with `jupyter_client` is now async.

A filter to convert to/from jupytext and Jupyter notebooks could be nice. I've thought about the possibility occasionally, but haven't actually attempted anything. I can't invest any significant time in...

@timothymillar Thanks for linking to your filter! I'm not sure at this point if I want to include filters within Codebraid itself. I've looked into Jupyter conversion some more, and...

I've done some research and experimentation, and have a proposal for how to proceed with this. There is a subset of Codebraid features that maps exactly to a Jupyter notebook,...

I'm not aware of anyone using Codebraid with a static site generator, but it's only been a little over 3 months since the first release. I'm planning to create a...

@dsoto That's a nice example! Thanks for the link.