From 8a0e6bbcfbff4b2f073dbd573cfb60eb369306b5 Mon Sep 17 00:00:00 2001 From: "Y.D.X" <73375426+YDX-2147483647@users.noreply.github.com> Date: Sun, 1 Jan 2023 15:36:28 +0800 Subject: [PATCH] Fix the markdown URL in the sample notebook URLs without `https://` are relative. --- wasm/notebook/snippets/python-markdown-math.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wasm/notebook/snippets/python-markdown-math.txt b/wasm/notebook/snippets/python-markdown-math.txt index 456eeb131..b01f503fe 100644 --- a/wasm/notebook/snippets/python-markdown-math.txt +++ b/wasm/notebook/snippets/python-markdown-math.txt @@ -20,7 +20,7 @@ In the notebook, you can write markdown, math and python. use %% then: I **can** bold things and _italicize_ them. You got the gist, this is standard -markdown syntax that you can [google](google.com). +markdown syntax that you can [google](https://google.com).
@@ -66,4 +66,4 @@ print("RustPython called back and said people need to have") import random rnd = random.randint(1,5) -print("nice " * rnd + "things.") \ No newline at end of file +print("nice " * rnd + "things.")