People who work with R are undoubtedly familiar with the R markdown package.
I am a vivid python user and use Mistune for converting markdown to html pages. It also supports code highlighting and mathjax to embed latex formulas in html. However there's one type of functionality missing.
R markdown has the possibility of executing R code inline (and rendering the result to html) or rendering graphs inline. That saves time and makes the documentation maintainable as you don't need to manually prepare the output of that function or manually prepare and save a graph since it's rendered on the fly.
Is there such a possibility or library in python, perhaps in combination with Mistune?