6 lines
126 B
Ruby
6 lines
126 B
Ruby
module ExampleHelper
|
|
def example_format(text)
|
|
"<em><strong><small>#{h(text)}</small></strong></em>".html_safe
|
|
end
|
|
end
|