Skip to content

Commit 8a0e6bb

Browse files
Fix the markdown URL in the sample notebook
URLs without `https://` are relative.
1 parent 71becd4 commit 8a0e6bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wasm/notebook/snippets/python-markdown-math.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In the notebook, you can write markdown, math and python. use %% then:
2020

2121

2222
I **can** bold things and _italicize_ them. You got the gist, this is standard
23-
markdown syntax that you can [google](google.com).
23+
markdown syntax that you can [google](https://google.com).
2424

2525
<br>
2626

@@ -66,4 +66,4 @@ print("RustPython called back and said people need to have")
6666
import random
6767
rnd = random.randint(1,5)
6868

69-
print("nice " * rnd + "things.")
69+
print("nice " * rnd + "things.")

0 commit comments

Comments
 (0)