QuantEcon / sphinxcontrib-jupyter

A Sphinx Extension for Generating Jupyter Notebooks
BSD 3-Clause "New" or "Revised" License
76 stars 23 forks source link

add support for note node type as blockquote markdown #81

Closed mmcky closed 6 years ago

mmcky commented 6 years ago

fixes #80

mmcky commented 6 years ago

this PR is impacting on code_blocks rendering.

This is currently failing as the code_blocks tests for code blocks that are contained in notes

.. NOTE::

   A code block in a note::

       >>> 1+1

   Another one::

       >>> 1+1

the current reference IPYNB actually ignores the note. Current implementation in this PR includes the contents of the note as raw text which is problematic when it contains code.

mmcky commented 6 years ago

I will merge this PR with the known limitation that note can currently only contain raw and direct markdown convertible text and open an issue to support embedded directives.