With Liquid markup, is it possible to strip out content between two placeholders.
For example let's say I have this content in a forum post:
This is my forum post. [[This is text I don't want to output in my forum post]]
Is there a way I could use a liquid markup filter to only display "This is my forum post, without the content in the brackets?
Something kind of like this?
{{ forum.post | strip-start: "[[" | strip-end: "]]" }}