-
Notifications
You must be signed in to change notification settings - Fork 34
/
Rules
121 lines (99 loc) · 2.59 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
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
#!/usr/bin/env ruby
# A few helpful tips about the Rules file:
#
# * The order of rules is important: for each item, only the first matching
# rule is applied.
#
# * Item identifiers start and end with a slash (e.g. “/about/” for the file
# “content/about.html”). To select all children, grandchildren, … of an
# item, use the pattern “/about/*/”; “/about/*” will also select the parent,
# because “*” matches zero or more characters.
# Reset search-index by deleting it every time
preprocess do
File.delete("output/search-index.json") if File.exists?("output/search-index.json")
end
compile '/static/*' do
end
compile '/CNAME/' do
end
#about 关于我们
compile '/about/*' do
filter :kramdown, :toc_levels => [2]
filter :erb
layout 'about'
end
compile '/docs/baas/*' do
end
compile '/docs/downloads/*' do
end
compile '/docs/empush/*' do
end
compile '/docs/emuser/*' do
end
compile '/docs/usergrid/*' do
end
# 文档
compile '/docs/*' do
filter :erb
filter :kramdown, :toc_levels => [2]
filter :colorize_syntax,
:colorizers => {:java => :rouge,
:objective_c => :rouge,
:javascript => :rouge
}
layout item[:layout] || 'docs'
end
# 单独处理,是为了让此页面下能正常展示html标签给用户看
compile '/console/app_profile/*' do
layout item[:layout] || 'console'
end
# console
compile '/console/*' do
filter :erb
filter :kramdown, :toc_levels => [2]
filter :colorize_syntax,
:colorizers => {:java => :rouge,
:objective_c => :rouge,
:javascript => :rouge
}
layout item[:layout] || 'console'
end
compile '*' do
filter :erb
filter :kramdown, :toc_levels => [2]
filter :colorize_syntax,
:colorizers => {:java => :rouge,
:objective_c => :rouge,
:javascript => :rouge
}
layout item[:layout] || 'default'
end
route '/static/*' do
item.identifier[7..-2]
end
route '/CNAME/' do
'/CNAME'
end
# 放什么,就输出什么对应的html文件
route '/docs/baas/*' do
item.identifier.chop + ('.' + item[:extension])
end
route '/docs/downloads/*' do
item.identifier.chop + '.html'
end
route '/docs/empush/*' do
item.identifier + 'index.html'
end
route '/docs/emuser/*' do
item.identifier.chop + '.html'
end
route '/docs/usergrid/*' do
item.identifier.chop + '.html'
end
route '/console/app_profile/*' do
item.identifier + 'index.html'
end
route '*' do
item.identifier + 'index.html'
end
layout '*', :erb