Releases: QuantEcon/sphinxcontrib-jupyter
Release of 0.5.10
Release of 0.5.9
Minor update to 0.5.8 that fixes an edge case where titles are composed of text and other element types such as index. This parses the children list and extracts text items only.
Release of 0.5.8
This release includes a minor update to next
and prev
metadata support (introduced in 0.5.7
) to enable a filter in conf.py
for documents that are not to be written to the nb
metadata.
Usage:
jupyter_nextprev_ignore = ["404, "search"]
Release of 0.5.7
This release includes metadata for next
and previous
documents
The metadata is provided at the notebook level in nb.metadata
and is in the following format:
"next_doc": {
"link": str(docname),
"title": str(title)
},
with metadata keys: next_doc
and prev_doc
.
If a next
/previous
document does not exist there is no metadata included for that item.
Release of 0.5.6
Release of 0.5.5
This release includes the following bug fixes and improvements:
- [BUG] check node['ids'] before accessing #325 (AakashGfude)
- [BUG] bullets array pop in enumerated list. #323 (AakashGfude)
- [ENH] Throwing an exit code of 1 when there is an error in coverage #321 (AakashGfude)
- [ENH] Added protective code to support more versions of YAML package #320 (Lightslayer)
- Fixing versions of dask to prevent code syntax issues #314 (AakashGfude)
Note: Python Version 2.7 is no longer tested as of this release. Python=3.7 and 3.8 will be tested.
Release of Version 0.5.4
This is a minor release to fix the version of dask
as the extension is not compatible with the current version of dask due to a change in internal data structures. Issue #313
Release of Version 0.5.2
This release includes support for building book
style PDF files for projects as a single PDF
file.
New Features:
- PDF: Enable whole of project book style PDF #299 (AakashGfude)
Release of Version 0.5.1
Release of Version 0.5.0
This release adds the ability to produce pdf
documents (via jupyter ipynb) and adds timestamp metadata to notebooks. To use the pdf
feature the theme requires a latex.tpl
support template. See documentation for further details.
Usage:
make juptyerpdf
New Features:
- FEAT: Added timestamp in metadata #285 (AakashGfude)
- FEAT: Adding a pdf pipeline to allow conversion of rst files to pdf #211 (AakashGfude)
Tests:
Docs:
- DOCS: Document
pdf
pipeline and translator options #219