I have a TextBoxFor like this:
@Html.TextBoxFor(x => x.Test, new { data_binding = "value:Test,events:['keyup']" })
The output is:
<input data-binding="value:Test,events:['keyup']" id="Test" name="Test" placeholder="" type="text" />
The ' around keyup are replaced with &# 39; .
How do I prevent escaping/sanitazing of the attribute value?