-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add jupyterlite_contents config (#24)
* Add jupyterlite_contents config * Add docs for jupyterlite_content and jupyterlite_dir * Add contents to docs * Linter * Fix jupyterlite_contents * Fix notebook * Allow for passing contents as a string * Update docs/conf.py Co-authored-by: Jason Grout <[email protected]> * Fix variable shadowing * Update src/jupyterlite_sphinx.py Co-authored-by: Jason Grout <[email protected]> * Update links to wheels Co-authored-by: Jason Grout <[email protected]>
- Loading branch information
1 parent
0223c17
commit 944ccf4
Showing
6 changed files
with
108 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
A,B,C,D | ||
1,2,3,4 | ||
7,8,9,10 | ||
32,45,90,54 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"metadata": { | ||
"kernelspec": { | ||
"name": "python", | ||
"display_name": "Pyolite", | ||
"language": "python" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "python", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.8" | ||
} | ||
}, | ||
"nbformat_minor": 5, | ||
"nbformat": 4, | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"source": "import pandas as pd", | ||
"metadata": { | ||
"trusted": true | ||
}, | ||
"execution_count": null, | ||
"outputs": [], | ||
"id": "09909708-6e45-4f96-92bc-af61031b2311" | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"source": "pd.read_csv('data.csv')", | ||
"metadata": { | ||
"trusted": true | ||
}, | ||
"execution_count": null, | ||
"outputs": [], | ||
"id": "17ad47b4-76dd-46f6-b4da-eb3ac6f96d48" | ||
} | ||
] | ||
} |
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
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