ivirabyan / jquery-mentions

Adds mentioning support to your text fields.
http://ivirabyan.github.io/jquery-mentions/
MIT License
114 stars 49 forks source link

Urls are escaped before sending them to the server #33

Closed roshandevadiga closed 9 years ago

roshandevadiga commented 9 years ago

If I add a URL in the text box they are sanitized by the escape_html method. I used sanitize it on the server-side i.e //www.google.co.in/ translates to //www.google.co.in/

But the plugin converts it to //www.google.co.in/

This is breaking my current app. Is there a way to override escape_html method?