đĒ Jupyter Notebooks
Jupyter Notebooks can be included in your Dr. Jekyll docs in two ways: as a file or inline. The file method allows you to include an entire notebook from your docs directory, while the inline method lets you embed notebook content directly within your markdown files.
FILE
{% ipynb_file /path/to/notebook.ipynb %}
TEST MARKDOWN
This is a test markdown file to demonstrate the recent edits made to the project. The edits include changes to the configuration file and the head custom HTML file.
#!/usr/bin/env bash
set -u
echo "Running tests for drjekyll-action..."INLINE
{% ipynb %}
{
"cells": [
{
"cell_type": "markdown",
"id": "8eb721cd",
"metadata": {},
"source": [
"### TEST MARKDOWN\n",
"\n",
"This is a test markdown file to demonstrate the recent edits made to the project. The edits include changes to the configuration file and the head custom HTML file."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6173648f",
"metadata": {
"vscode": {
"languageId": "shellscript"
}
},
"outputs": [],
"source": [
"#!/usr/bin/env bash\n",
"\n",
"set -u\n",
"\n",
"echo \"Running tests for drjekyll-action...\""
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
{% endipynb %}
TEST MARKDOWN
This is a test markdown file to demonstrate the recent edits made to the project. The edits include changes to the configuration file and the head custom HTML file.
#!/usr/bin/env bash
set -u
echo "Running tests for drjekyll-action..."