Edit /streamlit_app.py to customize this app to your heart's desire ❤️
If you have any questions, checkout our documentation and community forums. import streamlit as st from annotated_text import annotated_text, annotation
"""
Below is some annotated text: """
with st.echo(): annotated_text( "This ", ("is", "verb"), " some ", ("annotated", "adj"), ("text", "noun"), " for those of ", ("you", "pronoun"), " who ", ("like", "verb"), " this sort of ", ("thing", "noun"), "." )
""
""" Bam! """
""" And you can also customize colors: """
with st.echo(): annotated_text( "This ", ("is", "verb", "#8ef"), " some ", ("annotated", "adj", "#faa"), ("text", "noun", "#afa"), " for those of ", ("you", "pronoun", "#fea"), " who ", ("like", "verb", "#8ef"), " this sort of ", ("thing", "noun", "#afa"), "." )