class SiSU_XHTML_EPUB2_Format::HeadSeg

Public Class Methods

new(md) click to toggle source
# File lib/sisu/xhtml_epub2_format.rb, line 1822
def initialize(md)
  super(md)
end

Public Instance Methods

endnote_mark() click to toggle source
# File lib/sisu/xhtml_epub2_format.rb, line 1837
    def endnote_mark
%{
  <hr class="endnote" />
}
    end
head() click to toggle source
# File lib/sisu/xhtml_epub2_format.rb, line 1825
  def head
    %{#{doc_type}
<head>
  <title>
    #{@per.seg_name_x[@per.seg_name_x_tracker]} -
    #{@md.html_title}
  </title>
  <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
  #{@css.xhtml_epub}
</head>
  <body lang="#{@md.opt.lng}">}
  end