I am using the package st-annotated-text to highlight some words in texts on my streamlit app.
However, I noticed that when the text is too long, the app shows a truncated text.
Someone had the same problem ? Is there anyway to solve this problem ?
Following the #7 you can see that passing a height might work:
annotated_text("This is text", height=200)
If it does not work, you can still follow along the commit and change it in the package by
adding **kwargs to streamlit.components.v1.html(str(out), **kwargs) and def annotated_text(*args, **kwargs). Hope that helps.
I guess this would be the common approach to store annotations in most frameworks (e.g. spacy) anyway. Was also my first thought.
Some time ago I wrote a function that splits the string before and after an entity, until there are no more entities for a sentence and then adds the end of the string. Either you hack that function quickly yourself, wait until I find it again and paste it or maybe @thiago might want to implement general support for it?
In any case I think it should be no problem if there are several identical words. The reason for it is that currently the words must be specified in sequential order. So no worries about it, Jake !