Created
May 22, 2022 15:32
-
-
Save jonasrk/bb77a2781ef3ca129b466781fa48917f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myst-blogpost % ls | |
input.myst | |
myst-blogpost % cat input.myst | |
# My markdown document | |
```{code-cell} | |
print("Hello world! " * 2) | |
``` | |
myst-blogpost % jupytext input.myst --to ipynb | |
[jupytext] Reading input.myst in format myst | |
[jupytext] Writing input.ipynb | |
myst-blogpost % ls | |
input.ipynb input.myst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment