-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplitter
executable file
·216 lines (188 loc) · 5.29 KB
/
splitter
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/usr/bin/ruby
#!/Users/ron/.rvm/rubies/ruby-2.3.0/bin/ruby
require 'tempfile'
require 'fileutils'
SPLIT_MARKER = "----\n\n"
TOC_MARKER = "<!--TOC-->\n"
SCRIPT_FILE = "../splitter"
TAB = ' '
Titles = {}
def add_toc(chunk)
halves = chunk.split(TOC_MARKER)
puts "halves length %d" % halves.length
return chunk if halves.length != 2
return halves[0] + table_of_contents + halves[1]
end
def make_file_name(filenumber)
return "index.md" if filenumber == 0
return sprintf("%02d.md", filenumber)
end
def make_link_line(filenumber, max_length)
link = ""
link += "[%s](%02d.html) | " % [trim_left(Titles[filenumber - 1]), filenumber - 1] unless filenumber <= 1 # mod
link += "[%s](index.html) | " % [trim_left(Titles[filenumber - 1]) ] if filenumber == 1 # added
link += "[Top](index.html) | "
link += "[%s](%02d.html)" % [trim_left(Titles[filenumber + 1]), filenumber + 1] unless filenumber >= max_length
return link
end
def record_titles(chunks)
filenumber = 0
chunks.each do | chunk |
title = chunk.split("\n")[0].strip # remove any spaces
Titles[filenumber] = trim_right(title) # remove trailing stuff
filenumber += 1
end
end
def trim_full(string)
trim_left(trim_right(string))
end
def trim_right(string)
string.gsub(/ *#*$/, '')
end
def trim_left(string)
string.gsub(/^#* */, '')
end
def table_of_contents
toc = ""
Titles.each_pair do | number, title |
# looks like: ### title
pounds, *rest = title.split(' ')
the_title = rest.join(' ')
tabs = pounds.gsub(/#/, ' ')
tabs = tabs[4..-1] # remove one set
toc += "%s* [%s](%s)\n" % [tabs, the_title, make_file_name(number)]
end
return toc
end
def update_table_of_contents(chunks)
toc_chunk = chunks.delete_at(0)
updated_toc = add_toc(toc_chunk)
chunks.insert(0, updated_toc)
end
def write_file(chunk, reference_chunk, filenumber, max_length)
filename = make_file_name(filenumber)
title = Titles[filenumber]
puts filename + ": " + title
tf = File.new(filename, "w")
tf.puts make_link_line(filenumber, max_length)
tf.puts
tf.print chunk
tf.puts
tf.puts
tf.puts make_link_line(filenumber, max_length)
tf.puts
tf.puts
tf.print reference_chunk
tf.puts
tf.puts
tf.close
end
def write_files(chunks, reference_chunk)
filenumber = 0
chunks.each do |chunk|
write_file(chunk, reference_chunk, filenumber, chunks.length - 1) unless chunk.length < 1
filenumber += 1
end
end
ARGF.set_encoding(Encoding::UTF_8)
input = ARGF.read
chunks = input.split(SPLIT_MARKER)
reference_chunk = chunks.delete_at(-1)
record_titles(chunks)
update_table_of_contents(chunks)
write_files(chunks, reference_chunk)
FileUtils.cp(SCRIPT_FILE, ".")
#!/usr/bin/ruby
#!/Users/ron/.rvm/rubies/ruby-2.3.0/bin/ruby
require 'tempfile'
require 'fileutils'
SPLIT_MARKER = "----\n\n"
TOC_MARKER = "<!--TOC-->\n"
SCRIPT_FILE = "../splitter"
TAB = ' '
Titles = {}
def add_toc(chunk)
halves = chunk.split(TOC_MARKER)
puts "halves length %d" % halves.length
return chunk if halves.length != 2
return halves[0] + table_of_contents + halves[1]
end
def make_file_name(filenumber)
return "index.md" if filenumber == 0
return sprintf("%02d.md", filenumber)
end
def make_link_line(filenumber, max_length)
link = ""
link += "[%s](%02d.html) | " % [trim_left(Titles[filenumber - 1]), filenumber - 1] unless filenumber <= 1 # mod
link += "[%s](index.html) | " % [trim_left(Titles[filenumber - 1]) ] if filenumber == 1 # added
link += "[Top](index.html) | "
link += "[%s](%02d.html)" % [trim_left(Titles[filenumber + 1]), filenumber + 1] unless filenumber >= max_length
return link
end
def record_titles(chunks)
filenumber = 0
chunks.each do | chunk |
title = chunk.split("\n")[0].strip # remove any spaces
Titles[filenumber] = trim_right(title) # remove trailing stuff
filenumber += 1
end
end
def trim_full(string)
trim_left(trim_right(string))
end
def trim_right(string)
string.gsub(/ *#*$/, '')
end
def trim_left(string)
string.gsub(/^#* */, '')
end
def table_of_contents
toc = ""
Titles.each_pair do | number, title |
# looks like: ### title
pounds, *rest = title.split(' ')
the_title = rest.join(' ')
tabs = pounds.gsub(/#/, ' ')
tabs = tabs[4..-1] # remove one set
toc += "%s* [%s](%s)\n" % [tabs, the_title, make_file_name(number)]
end
return toc
end
def update_table_of_contents(chunks)
toc_chunk = chunks.delete_at(0)
updated_toc = add_toc(toc_chunk)
chunks.insert(0, updated_toc)
end
def write_file(chunk, reference_chunk, filenumber, max_length)
filename = make_file_name(filenumber)
title = Titles[filenumber]
puts filename + ": " + title
tf = File.new(filename, "w")
tf.puts make_link_line(filenumber, max_length)
tf.puts
tf.print chunk
tf.puts
tf.puts
tf.puts make_link_line(filenumber, max_length)
tf.puts
tf.puts
tf.print reference_chunk
tf.puts
tf.puts
tf.close
end
def write_files(chunks, reference_chunk)
filenumber = 0
chunks.each do |chunk|
write_file(chunk, reference_chunk, filenumber, chunks.length - 1) unless chunk.length < 1
filenumber += 1
end
end
ARGF.set_encoding(Encoding::UTF_8)
input = ARGF.read
chunks = input.split(SPLIT_MARKER)
reference_chunk = chunks.delete_at(-1)
record_titles(chunks)
update_table_of_contents(chunks)
write_files(chunks, reference_chunk)
FileUtils.cp(SCRIPT_FILE, ".")