File size: 317 Bytes
971449d
f984bb9
971449d
 
 
 
 
 
 
 
2184e1a
 
 
 
 
971449d
2184e1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
from annotated_text import annotated_text, annotation

texto = "Texto inicial sin marca"
mas_texto = "Texto final sin marca"
resaltado = "Texto resaltado"
tag = None
color = "#fea"


plantilla = [
    "Primer texto",
    (texto, tag, "magenta"),
    "Texto final",
]

annotated_text(*plantilla)