require 'epubber/models/concerns/has_endnotes' # Represents a book's introduction module Epubber::Models class Endnotes include Epubber::Models::Concerns::HasHTML def initialize @content = '
Not specified
' end def content(content) @content = clean_html(content) end def contextify { 'content' => @content } end end end