How do I insert HTML entities in a rails link_to?
For instance ✭ will give you a star character, how do I insert this inside a quote?
For example,
<%= link_to " ✭ Home", root_path %>
Thanks!
Try this:
<%= link_to raw("✭ Home"), root_path %>