Method: Array#to_html

Defined in:
lib/curly/array.rb

#to_htmlString

Convert every item in the array to HTML

Returns:

  • (String)

    Html representation of the object.



99
100
101
# File 'lib/curly/array.rb', line 99

def to_html
  map(&:to_html)
end