File size: 266 Bytes
92f3c10
6e537e6
179f17c
1c815a2
 
 
6e537e6
92f3c10
1
2
3
4
5
6
7
8
9
import gradio as gr

with gr.Blocks() as demo:
    gr.Markdown(
        value="This _example_ was **written** in [Markdown](https://en.wikipedia.org/wiki/Markdown)\n <a onclick='stoof' href='https://en.wikipedia.org/wiki/Markdown'>Markdown</a>"
    )

demo.launch()