<div dir="ltr">In the prior version of the Genie GUI, I was able to have a parameter renderer that returned an html snippet. In the v1.1 gui, that HTML is being escaped. I'm going to presume its related to the version of rails.<div><br></div><div>I tried adding .html_safe to the returned value of the renderer, but the snippet is still escaped.</div><div><br></div><div>I tried changing <%= value %> to <%= value&.html_safe %> with no luck.</div><div><br></div><div>Any thoughts?</div><div><br></div><div><div style="color:rgb(212,212,212);background-color:rgb(30,30,30);font-family:"droid sans mono","courier new",monospace,"droid sans fallback";font-size:14px;line-height:19px"><div><span style="color:rgb(197,134,192)">def</span> <span style="color:rgb(220,220,170)">serial_number_link</span>(<span style="color:rgb(156,220,254)">val</span>)</div><div>  <span style="color:rgb(206,145,120)">"<a href=\"<a href="http://my_site/Search?serialNumber=#{">http://my_site/Search?serialNumber=#{</a></span><span style="color:rgb(156,220,254)">val</span><span style="color:rgb(206,145,120)">}\">#{</span><span style="color:rgb(156,220,254)">val</span><span style="color:rgb(206,145,120)">}</a>".</span><span style="color:rgb(220,220,170);font-family:"droid sans mono","courier new",monospace,"droid sans fallback"">html_safe</span></div><div><span style="color:rgb(197,134,192)">end</span></div><br></div></div></div>