File size: 306 Bytes
8b8e713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

def handler(in1):    
    return in1

in1=gr.Textbox(label='請輸入 HTML 碼')
out1=gr.HTML(label="HTML 效果", container=False)
iface=gr.Interface(
    fn=handler,
    inputs=[in1], 
    outputs=[out1],
    title='HTML 元件測試',
    flagging_mode='never',
    )
iface.launch()