Add example.ipynb

This commit is contained in:
2026-01-31 15:19:11 -06:00
parent cfc1b61a7d
commit 90586defc9

75
example.ipynb Normal file
View File

@@ -0,0 +1,75 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# My First Notebook\n",
"This is a simple Jupyter Notebook to test rendering in Gitea.\n",
"\n",
"You can write **bold**, *italic*, or `inline code` here."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hello, Gitea!\n"
]
}
],
"source": [
"print(\"Hello, Gitea!\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Math Example\n",
"Here is an inline equation: $E = mc^2$\n",
"And a display equation:\n",
"$$\\int_0^1 x^2 dx$$"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[1, 4, 9, 16, 25]"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"numbers = [1, 2, 3, 4, 5]\n",
"[n**2 for n in numbers]"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.11"
}
},
"nbformat": 4,
"nbformat_minor": 5
}