From edc86bd41ec1922ec800891f96dbbc3e1a0369a5 Mon Sep 17 00:00:00 2001 From: Aaron Munger Date: Wed, 3 Apr 2024 14:05:01 -0700 Subject: [PATCH] added html output to test notebook --- .vscode/notebook.ipynb | 53 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/.vscode/notebook.ipynb b/.vscode/notebook.ipynb index de4d2f7..bcd4c8b 100644 --- a/.vscode/notebook.ipynb +++ b/.vscode/notebook.ipynb @@ -2,11 +2,19 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + } + ], "source": [ - "code()" + "print(1)" ] }, { @@ -15,11 +23,48 @@ "source": [ "Markdown cell" ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%HTML\n", + "" + ] } ], "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, "language_info": { - "name": "python" + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.9" }, "orig_nbformat": 4 },