Class: Formators::RubyHtml
- Inherits:
-
Object
- Object
- Formators::RubyHtml
- Defined in:
- lib/furirubi/formators/ruby_html.rb
Instance Method Summary collapse
Instance Method Details
#format(words) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/furirubi/formators/ruby_html.rb', line 3 def format(words) ruby_elements = words.map do |key, value| value.empty? ? key : "<ruby>#{key}<rt>#{value}</rt></ruby>" end ruby_elements.join end |