Hi,
This might be a simple question to answer, but I couldn't find the answer.
In ruby on rails, I thought the helper function would help escape special characters.
Example: " She's the one that took me "to" "
Code wise: <%= h("She's the one that took me "to" ") %>
However, the double quote won't allow me to display the code on the browser and gives me an error.
I thought the h() is an alias for html_escape() and they convert the following 4 characters
< > & "
into
< > & "
Is there something i'm missing with using double quotes?
Any advice appreciated Thanks, D