Has anyone added a MyST markdown extension to Julia?

The good folks over at Executable Books have developed a new markdown flavor which adds support for function-like operations, citations, custom labeling, and more. The new markdown flavor is called MyST.

Is this available in Julia yet? I don’t think so, because I’ve done a bit of searching and haven’t found anything yet, but I wanted to check here just in case.

To be clear, I’m hoping to do something like the following…

julia> using MyST

...

julia> mst"{cite}`my-citation`
"A. Einstein 2047"
2 Likes

I’m working on it! Thanks to the good folks at Executable Books, PyCall.jl, and Julia’s various MIME formats, this is super easy to build.

Standby for MyST.jl… I’ll make a post once it’s working!

Any updates?