Stuck with href when moving content from html.slim to html.erb
slim
a[href="#{service_url(id: @data['service_id'])}"]
Tried few in options in .erb - none worked:
<a href="#{service_url(id: @data['service_id'])}" class=...
<ahref="#{service_url(id: @data['service_id'])}" class= ...
<a [href="#{service_url(id: @data['service_id'])}"] class= ...
<a[href="#{service_url(id: @data['service_id'])}"] class= ...
<a :href="#{service_url(id: @data['service_id'])}" class= ...
I tried converting the code using methods provided here but I'm not getting any output.