You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
improvement: marimo export ipynb with outputs (#3048)
## 📝 Summary
add `--include-outputs` for marimo export. The goal for this is to
export to ipynb so they can be committed to git and viewable in GitHub.
GitHub doesn't allow scripts/styles that are remote (they get
sanitized), so web-components or widgets (including anywidgets) do not
get shown.
Instead, we will output markdown as that will be best rendered in
GitHub's notebook renderer.
e.g.
```bash
# with outputs
marimo export ipynb notebook.py -o notebook.ipynb --include-outputs
# without outputs (default)
marimo export ipynb notebook.py -o notebook.ipynb --no-include-outputs
```
0 commit comments