forked from progit/progit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeebooks
executable file
·52 lines (45 loc) · 1.72 KB
/
makeebooks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env ruby
# This script convers markdown book to one of the serveral e-book
# formats supported with calibre (http://calibre-ebook.com)
#
# Samples:
#
# Build e-book for amazon kindle for english and russian languages
# $ make-ebook en ru
# or
# $ FORMAT=mobi make-ebook en ru
#
# Build e-book in 'epub' format for russian only
# $ FORMAT=epub make-ebook ru
require 'rubygems'
require 'rdiscount'
require 'ruby-debug'
if ARGV.length == 0
puts "you need to specify at least one language. For example: makeebooks en"
exit
end
format = ENV['FORMAT'] || 'mobi'
puts "using .#{format} (you can change it via FORMAT environment variable. try 'mobi' or 'epub')"
ARGV.each do |lang|
puts "convert content for '#{lang}' language"
book_content = %(<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Pro Git - professional version control</title></head><body>)
dir = File.expand_path(File.join(File.dirname(__FILE__), lang))
Dir[File.join(dir, '**', '*.markdown')].sort.each do |input|
puts "processing #{input}"
content = File.read(input)
content.gsub!(/Insert\s+(.*)(\.png)\s*\n?\s*Figure\s+(.*)/, '![\3](figures/\1-tn\2 "\3")')
book_content << RDiscount.new(content).to_html
end
book_content << "</body></html>"
File.open("progit.#{lang}.html", 'w') do |output|
output.write(book_content)
end
system('ebook-convert', "progit.#{lang}.html", "progit.#{lang}.#{format}",
'--cover', 'ebooks/cover.png',
'--authors', 'Scott Chacon',
'--comments', "licensed under the Creative Commons Attribution-Non Commercial-Share Alike 3.0 license",
'--level1-toc', '//h:h1',
'--level2-toc', '//h:h2',
'--level3-toc', '//h:h3',
'--language', lang)
end