Method: Epubber::Models::Concerns::HasEndnotes#endnotes
- Defined in:
- lib/epubber/models/concerns/has_endnotes.rb
#endnotes {|@endnotes| ... } ⇒ Object
5 6 7 8 9 10 |
# File 'lib/epubber/models/concerns/has_endnotes.rb', line 5 def endnotes @endnotes ||= nil return @endnotes unless block_given? @endnotes = Epubber::Models::Endnotes.new yield @endnotes end |