-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRules
68 lines (51 loc) · 1.2 KB
/
Rules
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
#!/usr/bin/env ruby
# frozen_string_literal: true
compile '/**/*.html' do
layout '/default.*'
if item.identifier =~ '**/index.*'
write item.identifier.to_s
else
write item.identifier.without_ext + '/index.html'
end
end
compile '/poems/*.md' do
filter :kramdown
layout '/poem.html'
#puts "rep in poems/*.md is"
#p rep
write item.identifier.without_ext + '/index.html'
end
compile '/poems.md' do
filter :kramdown
layout '/poems.html'
write item.identifier.without_ext + '/index.html'
end
compile '/reviews.md' do
filter :kramdown
layout '/reviews.html'
write item.identifier.without_ext + '/index.html'
end
compile '/storie.md' do
filter :kramdown
layout '/story_list.*'
write item.identifier.without_ext + '/index.html'
end
compile '/reviews/*.md' do
filter :kramdown
layout '/review.html'
write item.identifier.without_ext + '/index.html'
end
compile '/**/*.md' do
filter :kramdown
layout '/default.*'
if item.identifier =~ '**/index.*'
write item.identifier.without_ext + '.html'
else
write item.identifier.without_ext + '/index.html'
end
end
compile '/**/*' do
write item.identifier.to_s
end
passthrough '/gallery/*'
layout '/**/*', :erb