forked from progit/progit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeebooks
executable file
·78 lines (70 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env ruby
# encoding: utf-8
# 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
# $ ruby makeebooks en ru
# or
# $ FORMAT=mobi ruby makeebooks en ru
#
# Build e-book in 'epub' format for russian only
# $ FORMAT=epub ruby makeebooks ru
require 'rubygems'
require 'rdiscount'
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"
figure_title = 'Figure'
book_title = 'Pro Git - professional version control'
authors = 'Scott Chacon'
comments = 'licensed under the Creative Commons Attribution-Non Commercial-Share Alike 3.0 license'
if lang == 'ko'
figure_title = '그림'
elsif lang == 'ja'
figure_title = '図'
elsif lang == 'ru'
figure_title = 'Рисунок'
book_title = 'Pro Git — профессиональный контроль версий'
authors = 'Скот Чакон'
comments = 'Лицензия: Creative Commons Attribution-Non Commercial-Share Alike 3.0 license'
elsif lang == 'es'
figure_title = 'Figura'
elsif lang == 'it'
figure_title = 'Figura'
comments = 'distribuito sotto licenza Creative Commons Attribution-Non Commercial-Share Alike 3.0'
elsif lang == 'zh'
figure_title = '图'
elsif lang == 'zh-tw'
figure_title = '圖'
elsif lang == 'pt-br'
figure_title = 'Figura'
end
book_content = %(<html xmlns="http://www.w3.org/1999/xhtml"><head><title>#{book_title}</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_title}\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', authors,
'--comments', comments,
'--level1-toc', '//h:h1',
'--level2-toc', '//h:h2',
'--level3-toc', '//h:h3',
'--language', lang)
end