require 'epubber/models/model' # Represents a book's introduction module Epubber::Models class Introduction < Model def initialize @content = '
Not specified
' end def content(content) @content = clean_html(content) end def contextify { 'content' => @content } end end end