Chris Sewell

Results 1261 comments of Chris Sewell

Hmm, I’m on the fence about inheritance, mainly because it can be abused with multiple inheritance, that leads to the configurations becoming very opaque to understand (which is what I...

I assume you are referring [this extension](https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/nbextensions/python-markdown/readme.html)? If so, [this](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/src/jupyter_contrib_nbextensions/nbconvert_support/pre_pymarkdown.py) is the actual file containing the preprocessor. You should be able to follow the instructions [here](https://github.com/chrisjsewell/ipypublish#creating-a-bespoke-converter) and add the `PyMarkdownPreprocessor`...

The only thing I noticed is that in [PyMarkdownPreprocessor](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/src/jupyter_contrib_nbextensions/nbconvert_support/pre_pymarkdown.py), it is searching within the markdown cells metadata for a `variables` key. This isn't normally present, but I assume the extension...

@lordflaron please note that the plugin API has changed in v0.7.0. The plugin file should now be a JSON file (see [this documentation](https://ipypublish.readthedocs.io/en/latest/custom_export_config.html#conversion-of-plugins-from-old-api) for a conversion tool) and will look...

Hi @daha96, as you may have noted I'm not really focussed on this project anymore and am now maintaining jupyter-book. So I will merge this PR despite the tests failing...

> Does this not automatically update conda-forge when it is released No, it automates the creation of a PR for the release. This PR updates the version, but not any...

But anyhow I will do it now

By default sphinx will convert ALL files it finds, with extensions it knows how to convert (in this case .rst and .ipynb). It is not goverened by the the index.rst,...

Thanks for the feedback @bdatko 👍 these definitely sound like reasonable improvements

Hey @RBenRocks would you be able to provide your notebook for me to have a look at, or a minimal working example that reproduces the error. The simplest way to...