I have a character filter that removes some markdown elements, such as link structure, from a text blob Im storing. I'd like to be able to use the filtered results for highlighting so that I can show highlights of the text, but without the markdown elements.
I can see that my filter works properly when I get the token back, and I'd be able to re-structure the markdown from the tokens and store that, but it seems like a hacky way of doing things.
Is it possible to use the filtered results and store them automatically in another property?
Thanks