Class: ContentfulConverter::NokogiriBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/contentful_converter/nokogiri_builder.rb

Class Method Summary collapse

Class Method Details

.build(html) ⇒ Object



9
10
11
12
13
14
# File 'lib/contentful_converter/nokogiri_builder.rb', line 9

def build(html)
  doc = create_nokogiri_fragment(transform(html))
  normalize_lists(doc)
  normalize_embeds(doc)
  doc
end