Adding annoted text in st.table

Hello all,
I am trying to add annotated text in st.table. I have found the following component GitHub - tvst/st-annotated-text: A simple component to display annotated text in Streamlit apps., which helps in showing in annotated text.
However, I like to add this annotated text inside a table. I am showing data from panda dataframe using st.table(). One of the columns of the dataframe has text. I like the text to be annotated.

How can I do it? Do I need to create a custom component or can I somehow extend the st.table?