pip64 commited on
Commit
108dc0e
·
1 Parent(s): 5140168

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
  import markdown
3
 
4
- def markdown(text):
5
  return markdown.markdown(text)
6
 
7
- iface = gr.Interface(fn=markdown, inputs="text", outputs="text")
8
  iface.launch()
 
1
  import gradio as gr
2
  import markdown
3
 
4
+ def markdowntext(text):
5
  return markdown.markdown(text)
6
 
7
+ iface = gr.Interface(fn=markdowntext, inputs="text", outputs="text")
8
  iface.launch()