It seems that Vue.js templating language auto-escape strings. I made a filter that wrap urls to links, but the printed results is escaped html. I couldn't find any mention of this in the docs. Is there a way to avoid escaping? Should'nt it be a filter instead? Like this: ``` {{ unsafe_string | escape }} ```