Phalcon 1.3.4, Windows 8.1.
For example i have that's string from user:
$tag = '<i>Tag word</i>';
And i would like to show this in my template with htmlspecialchars() escaping. I found in volt docs that's part and when i try
{{ tag | escape }}
it's just output value from variable, without any escaping!
Bug or wrong usage?