Class: Softcover::Builders::Epub
- Inherits:
-
Softcover::Builder
- Object
- Softcover::Builder
- Softcover::Builders::Epub
- Defined in:
- lib/softcover/builders/epub.rb
Constant Summary
Constants included from Utils
Instance Attribute Summary
Attributes inherited from Softcover::Builder
Instance Method Summary collapse
- #build!(options = {}) ⇒ Object
- #chapter_name(n) ⇒ Object
-
#chapter_template(title, content) ⇒ Object
Returns the HTML template for a chapter.
-
#chapters ⇒ Object
Returns the chapters to write.
-
#clean_book_id(filename) ⇒ Object
Removes the ‘#book’ CSS id.
- #container_xml ⇒ Object
-
#content_opf(options = {}) ⇒ Object
Returns the content configuration file.
-
#copy_image_files ⇒ Object
Copies the image files from the HTML version of the document.
- #cover_id(options) ⇒ Object
- #cover_page ⇒ Object
- #create_directories ⇒ Object
- #create_style_files(options) ⇒ Object
-
#escape_spaces(name) ⇒ Object
Escapes spaces in filename directories.
-
#html_with_math(chapter, images_dir, texmath_dir, pngs, options = {}) ⇒ Object
Returns HTML for HTML source that includes math.
- #ibooks_xml ⇒ Object
-
#inkscape ⇒ Object
Returns the Inkscape executable (if available).
-
#make_epub(options = {}) ⇒ Object
Make the EPUB, which is basically just a zipped HTML file.
-
#math?(string) ⇒ Boolean
Returns true if a string appears to have LaTeX math.
-
#move_epub ⇒ Object
Move the completed EPUB book to the ‘ebooks` directory.
-
#nav_html ⇒ Object
Returns the nav HTML content.
-
#nav_link(chapter) ⇒ Object
Returns a navigation link for the chapter.
-
#phantomjs ⇒ Object
Returns the PhantomJS executable (if available).
-
#preview? ⇒ Boolean
Returns true if generating a book preview.
-
#remove_html ⇒ Object
Removes HTML.
-
#remove_images ⇒ Object
Removes images in case they are stale.
-
#section_names_and_ids(article) ⇒ Object
Returns a list of the section names and CSS ids.
-
#strip_attributes(doc) ⇒ Object
Strip attributes that are invalid in EPUB documents.
-
#strip_html(text) ⇒ Object
Strip HTML elements from the given text.
-
#toc_ncx ⇒ Object
Returns the Table of Contents for the spine.
-
#write_container_xml ⇒ Object
Writes the container XML file.
-
#write_contents(options = {}) ⇒ Object
Writes the content.opf file.
-
#write_html(options = {}) ⇒ Object
Writes the HTML for the EPUB.
-
#write_ibooks_xml ⇒ Object
Writes iBooks-specific XML.
-
#write_mimetype ⇒ Object
Writes the mimetype file.
-
#write_nav ⇒ Object
Writes the navigation file.
-
#write_toc ⇒ Object
Writes the Table of Contents.
- #zip ⇒ Object
Methods included from EpubUtils
#content_opf_template, #cover?, #cover_filename, #cover_img, #cover_img_path, #escape, #images_dir, #nav_filename, #nav_html_template, #toc_ncx_template, #xhtml
Methods included from Output
should_output?, silence!, silent?, #system, unsilence!
Methods inherited from Softcover::Builder
Methods included from Utils
#add_highlight_class!, #article?, #as_size, #book_file_lines, #chapter_label, #commands, #current_book, #dependency_filename, #digest, #executable, #execute, #filename_or_default, #first_path, #get_filename, #html_extension, #in_book_directory?, #language_labels, #linux?, #logged_in?, #master_content, #master_filename, #master_latex_header, #mkdir, #non_comment_lines, #os_x?, #path, #polytexnic_html, #raw_lines, #reset_current_book!, #rm, #rm_r, #silence, #silence_stream, #source, #template_dir, #tmpify, #unpublish_slug, #write_master_latex_file, #write_pygments_file
Constructor Details
This class inherits a constructor from Softcover::Builder
Instance Method Details
#build!(options = {}) ⇒ Object
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/softcover/builders/epub.rb', line 145 def build!(={}) @preview = [:preview] Softcover::Builders::Html.new.build! if manifest.markdown? opts = .merge({ source: :polytex, origin: :markdown }) self.manifest = Softcover::BookManifest.new(opts) end remove_html remove_images create_directories write_mimetype write_container_xml write_ibooks_xml copy_image_files write_html() write_contents() create_style_files() write_toc write_nav make_epub() move_epub end |
#chapter_name(n) ⇒ Object
610 611 612 |
# File 'lib/softcover/builders/epub.rb', line 610 def chapter_name(n) n == 0 ? language_labels["frontmatter"] : strip_html(chapters[n].) end |
#chapter_template(title, content) ⇒ Object
Returns the HTML template for a chapter.
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 |
# File 'lib/softcover/builders/epub.rb', line 654 def chapter_template(title, content) %(<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>#{title}</title> <link rel="stylesheet" href="styles/pygments.css" type="text/css" /> <link rel="stylesheet" href="styles/softcover.css" type="text/css" /> <link rel="stylesheet" href="styles/epub.css" type="text/css" /> <link rel="stylesheet" href="styles/custom.css" type="text/css"/> <link rel="stylesheet" href="styles/custom_epub.css" type="text/css"/> <link rel="stylesheet" type="application/vnd.adobe-page-template+xml" href="styles/page-template.xpgt" /> </head> <body> #{content} </body> </html>) end |
#chapters ⇒ Object
Returns the chapters to write.
221 222 223 |
# File 'lib/softcover/builders/epub.rb', line 221 def chapters preview? ? manifest.preview_chapters : manifest.chapters end |
#clean_book_id(filename) ⇒ Object
Removes the ‘#book’ CSS id. For some reason, EPUB books hate the #book ids in the stylesheet (i.e., such books fail to validate), so remove them.
450 451 452 |
# File 'lib/softcover/builders/epub.rb', line 450 def clean_book_id(filename) File.read(filename).gsub(/#book /, '') end |
#container_xml ⇒ Object
520 521 522 523 524 525 526 527 |
# File 'lib/softcover/builders/epub.rb', line 520 def container_xml %(<?xml version="1.0"?> <container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container"> <rootfiles> <rootfile full-path="OEBPS/content.opf" media-type="application/oebps-package+xml"/> </rootfiles> </container>) end |
#content_opf(options = {}) ⇒ Object
Returns the content configuration file.
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 |
# File 'lib/softcover/builders/epub.rb', line 539 def content_opf(={}) man_ch = chapters.map do |chapter| %(<item id="#{chapter.slug}" href="#{xhtml(chapter.fragment_name)}" media-type="application/xhtml+xml"/>) end toc_ch = chapters.map do |chapter| %(<itemref idref="#{chapter.slug}"/>) end image_files = Dir['epub/OEBPS/images/**/*'].select { |f| File.file?(f) } images = image_files.map do |image| ext = File.extname(image).sub('.', '') # e.g., 'png' ext = 'jpeg' if ext == 'jpg' # Strip off the leading 'epub/OEBPS'. sep = File::SEPARATOR href = image.split(sep)[2..-1].join(sep) # Define an id based on the filename. # Prefix with 'img-' in case the filname starts with an # invalid character such as a number. label = File.basename(image).gsub('.', '-') id = "img-#{label}" %(<item id="#{id}" href="#{href}" media-type="image/#{ext}"/>) end manifest.html_title content_opf_template(manifest.html_title, manifest.copyright, manifest., manifest.uuid, cover_id(), toc_ch, man_ch, images) end |
#copy_image_files ⇒ Object
Copies the image files from the HTML version of the document.
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
# File 'lib/softcover/builders/epub.rb', line 455 def copy_image_files # Copy over all images to guarantee the same directory structure. FileUtils.cp_r(File.join('html', 'images'), File.join('epub', 'OEBPS')) # Parse the full HTML file with Nokogiri to get images actually used. html = File.read(manifest.full_html_file) html_image_filenames = Nokogiri::HTML(html).css('img').map do |node| node.attributes['src'].value end # Form the corresponding EPUB image paths. used_image_filenames = html_image_filenames.map do |filename| "epub/OEBPS/#{filename}" end.to_set # Delete unused images. Dir.glob("epub/OEBPS/images/**/*").each do |image| next if File.directory?(image) rm image unless used_image_filenames.include?(image) end end |
#cover_id(options) ⇒ Object
583 584 585 |
# File 'lib/softcover/builders/epub.rb', line 583 def cover_id() cover?() ? "img-#{cover_img.sub('.', '-')}" : nil end |
#cover_page ⇒ Object
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 |
# File 'lib/softcover/builders/epub.rb', line 567 def cover_page %(<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Cover</title> </head> <body> <div id="cover"> <img width="573" height="800" src="images/#{cover_img}" alt="cover" /> </div> </body> </html> ) end |
#create_directories ⇒ Object
185 186 187 188 189 190 191 192 |
# File 'lib/softcover/builders/epub.rb', line 185 def create_directories mkdir('epub') mkdir(path('epub/OEBPS')) mkdir(path('epub/OEBPS/styles')) mkdir(path('epub/META-INF')) mkdir(images_dir) mkdir('ebooks') end |
#create_style_files(options) ⇒ Object
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 |
# File 'lib/softcover/builders/epub.rb', line 429 def create_style_files() html_styles = File.join('html', 'stylesheets') epub_styles = File.join('epub', 'OEBPS', 'styles') FileUtils.cp(File.join(html_styles, 'pygments.css'), epub_styles) File.write(File.join(epub_styles, 'softcover.css'), clean_book_id(path("#{html_styles}/softcover.css"))) # Copy over the EPUB-specific CSS. template_dir = Softcover::Utils.template_dir() epub_css = File.join(template_dir, epub_styles, 'epub.css') FileUtils.cp(epub_css, epub_styles) # Copy over custom CSS. File.write(File.join(epub_styles, 'custom.css'), clean_book_id(path("#{html_styles}/custom.css"))) end |
#escape_spaces(name) ⇒ Object
Escapes spaces in filename directories. E.g., “Mobile Directory” becomes “Mobile\ Directory”.
278 279 280 |
# File 'lib/softcover/builders/epub.rb', line 278 def escape_spaces(name) name.gsub(' ', '\ ') end |
#html_with_math(chapter, images_dir, texmath_dir, pngs, options = {}) ⇒ Object
Returns HTML for HTML source that includes math. As a side-effect, html_with_math creates PNGs corresponding to any math in the given source. The technique involves using PhantomJS to hit the HTML source for each page containing math to create SVGs for every math element. Since ereader support for SVGs is spotty, they are then converted to PNGs using Inkscape. The filenames are SHAs of their contents, which arranges both for unique filenames and for automatic disk caching.
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
# File 'lib/softcover/builders/epub.rb', line 290 def html_with_math(chapter, images_dir, texmath_dir, pngs, ={}) content = File.read(File.join("html", "#{chapter.slug}.#{html_extension}")) pagejs = "#{File.dirname(__FILE__)}/utils/page.js" dir = escape_spaces(Dir.pwd) url = "file://" + dir + "/html/#{chapter.slug}.#{html_extension}" cmd = "#{phantomjs} #{pagejs} #{url}" silence { silence_stream(STDERR) { system cmd } } # Sometimes in tests the phantomjs_source.html file is missing. # It shouldn't ever happen, but it does no harm to skip it. return nil unless File.exist?('phantomjs_source.html') raw_source = File.read('phantomjs_source.html') source = strip_attributes(Nokogiri::HTML(raw_source)) rm 'phantomjs_source.html' # Remove the first body div, which is the hidden MathJax SVGs. if (mathjax_svgs = source.at_css('body div')) mathjax_svgs.remove else # There's not actually any math, so return nil. return nil end # Remove all the unneeded raw TeX displays. source.css('script').each(&:remove) # Remove all the MathJax preview spans. source.css('MathJax_Preview').each(&:remove) # Suck out all the SVGs svgs = source.css('div#book svg') frames = source.css('span.MathJax_SVG') svgs.zip(frames).each do |svg, frame| # Save the SVG file. svg['viewBox'] = svg['viewbox'] svg.remove_attribute('viewbox') # Workaround for bug in Inkscape 0.91 on MacOS X: # extract height/width from svg attributes and move them to style attr svg_height = svg['height'] # in ex svg_width = svg['width'] # in ex svg['style'] += ' height:'+svg_height+';' + ' width:'+svg_width+';' svg.remove_attribute('height') svg.remove_attribute('width') # /Workaround first_child = frame.children.first first_child.replace(svg) unless svg == first_child output = svg.to_xhtml svg_filename = File.join(texmath_dir, "#{digest(output)}.svg") svg_abspath = File.join("#{Dir.pwd}", svg_filename) File.write(svg_filename, output) # Convert to PNG named: png_filename = svg_filename.sub('.svg', '.png') png_abspath = svg_abspath.sub('.svg', '.png') pngs << png_filename # # Settings for texmath images in ePub / mobi ex2em_height_scaling = 0.51 # =1ex/1em for math png height ex2em_valign_scaling = 0.481482 # =1ex/1em for math png vertical-align ex2px_scale_factor = 20 # =1ex/1px scaling for SVG-->PNG conv. # These are used a three-step process below: Compute, Convert, Replace # STEP1: compute height and vertical-align in `ex` units svg_height_in_ex = Float(svg_height.gsub('ex','')) # MathJax sets SVG height in `ex` units but we want `em` units for PNG png_height = (svg_height_in_ex * ex2em_height_scaling).to_s + 'em' # Extract vertical-align css proprty for inline math equations: if svg.parent.parent.attr('class') == "inline_math" vertical_align = svg['style'].scan(/vertical-align: (.*?);/) vertical_align = vertical_align.flatten.first if vertical_align valign_in_ex = Float(vertical_align.gsub('ex','')) png_valign = (valign_in_ex * ex2em_valign_scaling).to_s + 'em' else png_valign = "0em" end else # No vertical align for displayed math png_valign = nil end # STEP2: Generate PNG from each SVG (unless PNG exists already). unless File.exist?(png_filename) unless [:silent] || [:quiet] puts "Creating #{png_filename}" end # Generate png from the MathJax_SVG using Inkscape # Use the -d option to get a sensible size: # Resolution for bitmaps and rasterized filters cmd = "#{inkscape} #{svg_abspath} -o #{png_abspath} -d 2" if [:silent] silence { silence_stream(STDERR) { system cmd } } else puts cmd silence_stream(STDERR) { system cmd } end end rm svg_filename # STEP 3: Replace svg element with an equivalent png. png = Nokogiri::XML::Node.new('img', source) png['src'] = File.join('images', 'texmath', File.basename(png_filename)) png['alt'] = png_filename.sub('.png', '') png['style'] = 'height:' + png_height + ';' if png_valign png['style'] += ' vertical-align:' + png_valign + ';' end svg.replace(png) end # Make references relative. source.css('a.hyperref').each do |ref_node| ref_node['href'] = ref_node['href'].sub('.html', xhtml('_fragment.html')) end source.at_css('div#book').children.to_xhtml end |
#ibooks_xml ⇒ Object
529 530 531 532 533 534 535 536 |
# File 'lib/softcover/builders/epub.rb', line 529 def ibooks_xml %(<?xml version="1.0" encoding="UTF-8"?> <display_options> <platform name="*"> <option name="specified-fonts">true</option> </platform> </display_options>) end |
#inkscape ⇒ Object
Returns the Inkscape executable (if available).
405 406 407 |
# File 'lib/softcover/builders/epub.rb', line 405 def inkscape @inkscape ||= executable(dependency_filename(:inkscape)) end |
#make_epub(options = {}) ⇒ Object
Make the EPUB, which is basically just a zipped HTML file.
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
# File 'lib/softcover/builders/epub.rb', line 476 def make_epub(={}) filename = manifest.filename zfname = filename + '.zip' base_file = "#{zip} -X0 #{zfname} mimetype" fullzip = "#{zip} -rDXg9" = "#{fullzip} #{zfname} META-INF -x \*.DS_Store -x mimetype" main_info = "#{fullzip} #{zfname} OEBPS -x \*.DS_Store \*.gitkeep" rename = "mv #{zfname} #{filename}.epub" commands = [base_file, , main_info, rename] command = commands.join(' && ') Dir.chdir('epub') do if Softcover.test? || [:quiet] || [:silent] silence { system(command) } else system(command) end end end |
#math?(string) ⇒ Boolean
Returns true if a string appears to have LaTeX math. We detect math via opening math commands: (, [, and beginequation This gives a false positive when math is included in verbatim environments and nowhere else, but it does little harm (requiring only an unnecessary call to page.js).
425 426 427 |
# File 'lib/softcover/builders/epub.rb', line 425 def math?(string) !!string.match(/(?:\\\(|\\\[|\\begin{equation})/) end |
#move_epub ⇒ Object
Move the completed EPUB book to the ‘ebooks` directory. Note that we handle the case of a preview book as well.
501 502 503 504 505 506 |
# File 'lib/softcover/builders/epub.rb', line 501 def move_epub origin = manifest.filename target = preview? ? origin + '-preview' : origin FileUtils.mv(File.join('epub', "#{origin}.epub"), File.join('ebooks', "#{target}.epub")) end |
#nav_html ⇒ Object
Returns the nav HTML content.
620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
# File 'lib/softcover/builders/epub.rb', line 620 def nav_html if article? article = chapters.first nav_list = section_names_and_ids(article).map do |name, id| %(<li> <a href="#{xhtml(article.fragment_name)}##{id}">#{name}</a></li>) end else nav_list = manifest.chapters.map do |chapter| element = preview? ? chapter.title : nav_link(chapter) %(<li>#{element}</li>) end end nav_html_template(manifest.html_title, nav_list) end |
#nav_link(chapter) ⇒ Object
Returns a navigation link for the chapter.
636 637 638 |
# File 'lib/softcover/builders/epub.rb', line 636 def nav_link(chapter) %(<a href="#{xhtml(chapter.fragment_name)}">#{chapter.html_title}</a>) end |
#phantomjs ⇒ Object
Returns the PhantomJS executable (if available).
400 401 402 |
# File 'lib/softcover/builders/epub.rb', line 400 def phantomjs @phantomjs ||= executable(dependency_filename(:phantomjs)) end |
#preview? ⇒ Boolean
Returns true if generating a book preview.
169 170 171 |
# File 'lib/softcover/builders/epub.rb', line 169 def preview? !!@preview end |
#remove_html ⇒ Object
Removes HTML. All the HTML is generated, so this clears out any unused files.
175 176 177 178 |
# File 'lib/softcover/builders/epub.rb', line 175 def remove_html FileUtils.rm(Dir.glob(path('epub/OEBPS/*.html'))) FileUtils.rm(Dir.glob(path('epub/OEBPS/*.xhtml'))) end |
#remove_images ⇒ Object
Removes images in case they are stale.
181 182 183 |
# File 'lib/softcover/builders/epub.rb', line 181 def remove_images rm_r images_dir end |
#section_names_and_ids(article) ⇒ Object
Returns a list of the section names and CSS ids. Form is [[‘Beginning’, ‘sec-beginning’], [‘Next’, ‘sec-next’]]
642 643 644 645 646 647 648 649 650 651 |
# File 'lib/softcover/builders/epub.rb', line 642 def section_names_and_ids(article) # Grab section names and ids from the article. filename = File.join('epub', 'OEBPS', xhtml(article.fragment_name)) doc = Nokogiri::HTML(File.read(filename)) names = doc.css('div.section>h2').map do |s| s.children.children.last.content end ids = doc.css('div.section').map { |s| s.attributes['id'].value } names.zip(ids) end |
#strip_attributes(doc) ⇒ Object
Strip attributes that are invalid in EPUB documents.
410 411 412 413 414 415 416 417 418 |
# File 'lib/softcover/builders/epub.rb', line 410 def strip_attributes(doc) attrs = %w[data-tralics-id data-label data-number data-chapter role aria-readonly target] doc.tap do attrs.each do |attr| doc.xpath("//@#{attr}").remove end end end |
#strip_html(text) ⇒ Object
Strip HTML elements from the given text.
615 616 617 |
# File 'lib/softcover/builders/epub.rb', line 615 def strip_html(text) Nokogiri::HTML.fragment(text).content end |
#toc_ncx ⇒ Object
Returns the Table of Contents for the spine.
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 |
# File 'lib/softcover/builders/epub.rb', line 588 def toc_ncx chapter_nav = [] if article? article = chapters.first section_names_and_ids(article).each_with_index do |(name, id), n| chapter_nav << %(<navPoint id="#{id}" playOrder="#{n+1}">) chapter_nav << %( <navLabel><text>#{escape(name)}</text></navLabel>) chapter_nav << %( <content src="#{xhtml(article.fragment_name)}##{id}"/>) chapter_nav << %(</navPoint>) end else chapters.each_with_index do |chapter, n| chapter_nav << %(<navPoint id="#{chapter.slug}" playOrder="#{n+1}">) chapter_nav << %( <navLabel><text>#{chapter_name(n)}</text></navLabel>) chapter_nav << %( <content src="#{xhtml(chapter.fragment_name)}"/>) chapter_nav << %(</navPoint>) end end toc_ncx_template(manifest.html_title, manifest.uuid, chapter_nav) end |
#write_container_xml ⇒ Object
Writes the container XML file. This is required by the EPUB standard.
202 203 204 |
# File 'lib/softcover/builders/epub.rb', line 202 def write_container_xml File.write(path('epub/META-INF/container.xml'), container_xml) end |
#write_contents(options = {}) ⇒ Object
Writes the content.opf file. This is required by the EPUB standard.
216 217 218 |
# File 'lib/softcover/builders/epub.rb', line 216 def write_contents(={}) File.write(path('epub/OEBPS/content.opf'), content_opf()) end |
#write_html(options = {}) ⇒ Object
Writes the HTML for the EPUB. Included is a math detector that processes the page with MathJax (via page.js) so that math can be included in EPUB (and thence MOBI).
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/softcover/builders/epub.rb', line 228 def write_html(={}) texmath_dir = File.join(images_dir, 'texmath') mkdir images_dir mkdir texmath_dir if cover?() File.write(path("epub/OEBPS/#{cover_filename}"), cover_page) end pngs = [] chapters.each_with_index do |chapter, i| target_filename = path("epub/OEBPS/#{xhtml(chapter.fragment_name)}") File.open(target_filename, 'w') do |f| content = File.read(path("html/#{chapter.fragment_name}")) doc = strip_attributes(Nokogiri::HTML(content)) # Use xhtml in references. doc.css('a.hyperref').each do |ref_node| ref_node['href'] = ref_node['href'].sub('.html', xhtml('.html')) end body = doc.at_css('body') if body.nil? $stderr.puts "\nError: Document not built due to empty chapter" $stderr.puts "Chapters must include a title using the Markdown" $stderr.puts " # This is a chapter" $stderr.puts "or the LaTeX" $stderr.puts " \\chapter{This is a chapter}" exit(1) end inner_html = body.children.to_xhtml if math?(inner_html) html = html_with_math(chapter, images_dir, texmath_dir, pngs, ) html ||= inner_html # handle case of spurious math detection else html = inner_html end f.write(chapter_template("Chapter #{i}", html)) end end # Clean up unused PNGs. png_files = Dir[path("#{texmath_dir}/*.png")] (png_files - pngs).each do |f| if File.exist?(f) puts "Removing unused PNG #{f}" unless [:silent] FileUtils.rm(f) end end end |
#write_ibooks_xml ⇒ Object
Writes iBooks-specific XML. This allows proper display of monospace fonts in code samples, among other things.
209 210 211 212 |
# File 'lib/softcover/builders/epub.rb', line 209 def write_ibooks_xml xml_filename = 'com.apple.ibooks.display-options.xml' File.write(path("epub/META-INF/#{xml_filename}"), ibooks_xml) end |
#write_mimetype ⇒ Object
Writes the mimetype file. This is required by the EPUB standard.
196 197 198 |
# File 'lib/softcover/builders/epub.rb', line 196 def write_mimetype File.write(path('epub/mimetype'), 'application/epub+zip') end |
#write_nav ⇒ Object
Writes the navigation file. This is required by the EPUB standard.
516 517 518 |
# File 'lib/softcover/builders/epub.rb', line 516 def write_nav File.write("epub/OEBPS/#{nav_filename}", nav_html) end |
#write_toc ⇒ Object
Writes the Table of Contents. This is required by the EPUB standard.
510 511 512 |
# File 'lib/softcover/builders/epub.rb', line 510 def write_toc File.write('epub/OEBPS/toc.ncx', toc_ncx) end |
#zip ⇒ Object
495 496 497 |
# File 'lib/softcover/builders/epub.rb', line 495 def zip @zip ||= executable(dependency_filename(:zip)) end |