mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
34 lines
887 B
HTML
34 lines
887 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title>PyMarkdown</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://pyscript.net/latest/pyscript.css"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="./assets/css/examples.css" />
|
|
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<py-tutor>
|
|
<py-config>
|
|
packages = [
|
|
"markdown"
|
|
]
|
|
plugins = [
|
|
"https://pyscript.net/latest/plugins/python/py_markdown.py",
|
|
"https://pyscript.net/latest/plugins/python/py_tutor.py"
|
|
]
|
|
</py-config>
|
|
|
|
<py-md>#Hello world!</py-md>
|
|
</py-tutor>
|
|
</body>
|
|
</html>
|