Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

POC on exporting Jupyter notebooks to Markdown #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions dataframes/to-markdown.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "045860fb-c575-4f35-b532-c58b5a4df323",
"metadata": {},
"source": [
"# To Markdown Demo\n",
"\n",
"This is a little demo notebook that'll be converted to markdown. Let's see how it goes!\n",
"\n",
"Let's start by adding 2 and 3."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "fa2bd3f9-5187-4739-b9e1-b3c5829a4ae8",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"2 + 3"
]
},
{
"cell_type": "markdown",
"id": "857e8494-1149-4db6-a60b-44d00d74be49",
"metadata": {},
"source": [
"This has a lot of potential... we'll see!"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:standard-coiled] *",
"language": "python",
"name": "conda-env-standard-coiled-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
2 changes: 2 additions & 0 deletions envs/standard-coiled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ dependencies:
- jupyterlab_code_formatter
- isort
- black
- nbconvert
- pandoc