You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classMyHelperUtils < TinyAdmin::Supportdefmultiline(array,options: [])array.join("<br/>")# Doesn't matter if I append `.html_safe`, or anything else I've triedendend
Page Result in the browser (<br/> tags appear as raw text, not as HTML):
1<br/>2<br/>3
The above is wrapped in actual HTML <span> open/close tags.
Is there a way to have a helper output HTML and have it render as HTML?
The text was updated successfully, but these errors were encountered:
In my model:
In my config:
In my helper utils class:
Page Result in the browser (
<br/>
tags appear as raw text, not as HTML):The above is wrapped in actual HTML
<span>
open/close tags.Is there a way to have a helper output HTML and have it render as HTML?
The text was updated successfully, but these errors were encountered: