Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/jupytext Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jupytext
> Convert Jupyter notebooks to plain text documents, and back again.
> More information: <https://jupytext.readthedocs.io>.
- Turn a notebook into a paired `.ipynb`/`.py` notebook:
`jupytext --set-formats ipynb,py {{notebook.ipynb}}`
- Convert a notebook to a `.py` file:
`jupytext --to py {{notebook.ipynb}}`
- Convert a `.py` file to a notebook with no outputs:
`jupytext --to notebook {{notebook.py}}`
- Convert a `.md` file to a notebook and run it:
`jupytext --to notebook --execute {{notebook.md}}`
- Update the input cells in a notebook and preserve outputs and metadata:
`jupytext --update --to notebook {{notebook.py}}`
- Update all paired representations of a notebook:
`jupytext --sync {{notebook.ipynb}}`