Omnibus commited on
Commit
ad3843b
·
verified ·
1 Parent(s): fe51eb8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,6 +43,6 @@ graph LR;
43
  with gr.Blocks() as app:
44
  inp_text=gr.Textbox(value=mermaid_code)
45
 
46
- out_html=gr.HTML("""<div id='diagram'>Text</div>""")
47
- app.load(mm,inp_text,out_html)
48
  app.launch()
 
43
  with gr.Blocks() as app:
44
  inp_text=gr.Textbox(value=mermaid_code)
45
 
46
+ out_html=gr.Markdown(mermaid_code)
47
+ #app.load(mm,inp_text,out_html)
48
  app.launch()