From 14cc05fb8072693411fd373539a4095fffdbde0f Mon Sep 17 00:00:00 2001 From: Nicholas Tollervey Date: Wed, 21 May 2025 16:27:27 +0100 Subject: [PATCH] Fix code example problem in the release HTML. (#2345) --- public/index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index e66854e8..3ea49dd7 100644 --- a/public/index.html +++ b/public/index.html @@ -137,12 +137,14 @@ <body> <h1>Hello world!</h1> <p>These are the Python interpreters in PyScript _VERSION_:</p> - <script type="py"> <!-- Pyodide --> + <script type="py"> + # Pyodide from pyscript import display import sys display(sys.version) </script> - <script type="mpy"> <!-- MicroPython --> + <script type="mpy"> + # MicroPython from pyscript import display import sys display(sys.version)