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
|
# File 'lib/vimdeck.rb', line 100
def self.generate(filename)
slides = File.read(filename)
renderer = Redcarpet::Markdown.new(Vimdeck::Render, :fenced_code_blocks => true)
Dir.mkdir("presentation") unless File.exists?("presentation")
@buffers = []
slides = slides.split("\n\n\n")
i = 0
slides.each do |slide|
slide_num = "%03d" % (i+1)
slide = renderer.render(slide)
regex = /\<\@\~(.*)\~\@\>/m
match = slide.match(regex)
while match && match[1] && match.post_match do
list = match[1].split("\n")
j = 0
list = list.map do |li|
j += 1
"#{j}. #{li}"
end
slide.sub!(regex, list.join("\n"))
match = match.post_match.match(regex)
end
regex = /\<\!\~(.*)\~\!\>/m
match = slide.match(regex)
while match && match[1] && match.post_match do
list = match[1].split("\n")
list = list.map do |li|
"\u2022 #{li}"
end
slide.sub!(regex, list.join("\n"))
match = match.post_match.match(regex)
end
buffer = {:num => i + 1}
code_height = 0
code = nil
code = slide.match( /```([^\n]*)\n.*\n```/m )
if code
buffer[:code] = { :language => code[1] }
code_height = code[0].split("\n").length - 2
code = code[0].gsub( /```[^\n]*\n/, '' ).gsub( /\n```/, '' )
slide = slide.gsub( /```[^\n]*\n/, '' ).gsub( /\n```/, '' )
if code_height > 0
start = slide.index(code)
start = slide[0..start].split("\n").length
buffer[:code][:end] = code_height + start - 1
buffer[:code][:start] = start
end
end
slide = slide_padding + slide.gsub( /\n/, "\n#{slide_padding}" ).gsub( / *$/, "" ) + ("\n" * 80) + "slide #{i+1}"
regex = /\{\~(.*?)\~\}/m
match = slide.match(regex)
buffer[:comments] = []
while match && match[1] && match.post_match do
slide.sub!(regex, match[1])
pattern = match[1] + "||(||_.*slide #{i+1}||)||@="
buffer[:comments] << pattern.gsub(/\n/, "||n").gsub(/\[/, "||[").gsub(/\]/, "||]").gsub(/\|/, "\\").gsub(/\"/, "\\\"")
match = match.post_match.match(regex)
end
File.open("presentation/slide#{slide_num}.md", "w") do |file|
file.write slide
end
@buffers << buffer
i += 1
end
File.open("presentation/script.vim", "w") do |file|
file.write script_template
end
end
|