Matt McKay
Matt McKay
It might be better to reorganise the options available for this extension into the different stages of how the extension works, in addition to global options for writing the notebooks....
@AakashGfude let's review `jupyter_kernels` option. We currently specify a few settings for setting up a `ipynb` metadata. - [x] Is this option still used when constructing the notebooks? - [...
It might be nice to be able to specify a target directory when compiling `html` from the collection of notebooks. On the QuantEcon lecture site this would be akin to...
It would be nice to be able to compile PDFs in files that use the jupyter extension. We need to add ``visit_jupyter_latex`` and ``depart_jupyter_latex`` methods.
It would be good to have the ability to save ``images``, ``downloads`` and ``data`` in notebooks as cell attachments. it looks like jupyterlab at least has partial support of the...
Add ``:no-execute:`` to cell metadata and write a `nbconvert` pre-parser to skip execution as an alternative to the current implementation of `:class: no-execute`. ```python class MyExecutePreprocessor(nbconvert.preprocessors.ExecutePreprocessor): def preprocess_cell(self, cell, resources,...
IT would be nice to be able to reference code-blocks using ``:name:`` attributes in the ``code-block`` directive. Then we can support internal hyperlinks that refer to code etc.
The preamble option ``jupyter_header_block`` appears to be broken.
a user would like to ability to for example have the following math and then use the label in code blocks for link-able references ``` .. math:: :label: ma_inf X_t...
The current solution for ``note`` support is to transfer the contents of note in the text format through to the notebook as a block quote titled with **Note**. It might...