Displaying persisted HTML
Frontend
I just found out how to display HTML from the database in the UI.
binder :note do
def body
unless @object.nil? || @object[:body].nil?
html_safe(@object[:body])
end
end
end
What other topics/keywords do I need to learn about binders?