Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
freddyaboulton
/
markdown-code
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
freddyaboulton
HF Staff
commited on
Sep 19
Commit
ea4f756
·
verified
·
1 Parent(s):
93feda4
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+13
-0
app.py
ADDED
Viewed
@@ -0,0 +1,13 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.Markdown(
5
+
value="""
6
+
### Python code
7
+
```python
8
+
def hello_world():
9
+
print("Hello, world!")
10
+
```
11
+
""")
12
+
13
+
demo.launch()