The image was generated with the wordcloud
package - see this notebook.
We are also looking for a logo for Jupytext. Please let us know if you can help!
Notebooks can be paired to more than one text representation #290. When the notebook is loaded in Jupyter, the inputs are loaded from the most recent text representation. Both the Jupyter Notebook and the JupyterLab extensions have been updated to allow multiple pairing.
Markdown cells in Python scripts can now use multiline comments #305. For instance, this is a valid Markdown cell:
# %% [markdown]
"""
A long
markdown
cell
"""
in the percent
format, and
# + [markdown]
"""
A long
markdown
cell
"""
is a valid markdown cell in the light
format.
Cf. #344. Metadata were previously encoded as JSON
# %% {"key": "value"}
1 + 1
Now they are encoded as
# %% key="value"
1 + 1
This affect all the formats. To avoid causing large diffs like this one, we have implemented an option cell_metadata_json
that is set automatically to true
when Jupytext detects that you were using JSON metadata in the text file. If you want to make the transition to the key=value
representation, change the value for that option to false
.
Raw cells were previously represented as code cells (triple backticks) with no language information. That representation was not compatible with Jupyter Nbconvert, cf. #321.
Raw cells are now encoded using HTML comments <!-- #raw -->
and <!-- #endraw -->
. If you were previously using raw cells in your Markdown files, please make sure you do have the YAML header - Jupytext will notice that the file was generated with a previous version of Jupytext, and will do the translation automatically.
Assume that you use the Markdown format to store your notebooks, you can update them with jupytext --to md *.md
. The impact should be limited, see for instance our test on the plotly.py-docs repository.
jupytext --pipe
and jupytext --check
understand {}
in the command as a placeholder for a temporary file name. This allows to execute commands that don't accept pipes, like pytest
:
jupytext --check 'pytest {}' notebook.ipynb # or notebook.md
If you want to read more about this, have a look at our sample notebook.
Powershell, Rust, Robot Framework
Have joined the list of supported languages. Rust was contributed by Jonas Bushart #351, and Robot Framework by Asko Soukka #378 - many thanks to them!
And if you want to see the detailed CHANGELOG, it's here!