Philip Austin

Results 19 comments of Philip Austin
trafficstars

I get the vague impression that jupyterlab 3.0 is going to change the extension bundling machinery so that a user-selectable markdown parser would be easier to deploy/implement? https://github.com/jupyterlab/jupyterlab/pull/8385

One thing that's worked fairly well for us to bridge the notebook/rst personalities of an md:myst file is to make sure that every figure is isolated as a jupyter cell...

Yes, this would be ideal for our teaching. A typical course setup will have a textbook or lab manual written in jupyterbook with crossreferencing, equation numbers, figure captions etc., and...

@amueller -- yes, our holy grail is a single myst:md master, with derived versions that have provenence via scripts and metadata giving topic, level of difficulty, whether a cell is...

That's basically our workflow. We make jupytext the notebook ContentsManger and consider the myst-markdown file to be cannonical. Jupytext automatically updates paired py:percent and ipynb files on every change. We...

@jtpio -- I'm seeing similar symptoms, not sure whether it is a related problem or not. I'm happy to open up my digital ocean droplet where this is currently running....

We do something like this for our quiz question banks, using cell metadata to sort questions/answers, course etc. and it works well. Some simple filter examples for myst:md [here](https://github.com/eoas-ubc/nbpython/blob/master/e340lib/noteutils.py). Two...

z2jh is having a related discussion: https://github.com/jupyterhub/zero-to-jupyterhub-k8s/issues/2313

Thanks, that's helpful -- elaborating on some of the buzzwords: the css file that nbconvert uses for html: [style.css](https://github.com/jupyter/nbconvert/tree/master/share/jupyter/nbconvert/templates/classic/static) is generated from [style.less](https://github.com/jupyter/notebook/blob/master/notebook/static/style/style.less) using the lessc preprocessor. The pandas-sphinx-theme that...