I currently have a filter that returns the text of the input tiddler, split into individual paragraphs:
[<inputTiddler>get[text]splitregexp[\n]]
I would now like to filter down the list further to output only those paragraphs that contain a link to <<currentTiddler>>
.
Now I kind of got half way there by messing around with the search[]
operator, but it’s not ideal because a link to a tiddler can appear in so many different ways (e.g. HelloThere
, [[HelloThere]]
, [[random text|HelloThere]]
).
I’m wondering if anyone could suggest a cleaner approach?