Method: ArticleJSON::Elements::Paragraph#to_h

Defined in:
lib/article_json/elements/paragraph.rb

#to_hHash

Hash representation of this heading element

Returns:

  • (Hash)


14
15
16
17
18
19
# File 'lib/article_json/elements/paragraph.rb', line 14

def to_h
  {
    type: type,
    content: content.map(&:to_h),
  }
end