Method: ArticleJSON::Elements::Heading#to_h

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

#to_hHash

Hash representation of this heading element

Returns:

  • (Hash)


16
17
18
19
20
21
22
# File 'lib/article_json/elements/heading.rb', line 16

def to_h
  {
    type: type,
    level: level,
    content: content,
  }
end