Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pip64
/
markdown
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
markdown
/
app.py
pip64
Update app.py
108dc0e
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
180 Bytes
import
gradio
as
gr
import
markdown
def
markdowntext
(
text
):
return
markdown.markdown(text)
iface = gr.Interface(fn=markdowntext, inputs=
"text"
, outputs=
"text"
)
iface.launch()