File size: 258 Bytes
f14d43d
 
d459ca2
 
 
f14d43d
 
 
1
2
3
4
5
6
7
8
import gradio as gr 

css = "footer {display: none !important;} .gradio-container {min-height: 0px !important;}"

with gr.Blocks(css=css) as demo:
    gr.HighlightedText(value=[("Text","Label 1"),("to be","Label 2"),("highlighted","Label 3")])

demo.launch()