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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
# A lexer for the Slim tempalte language
# @see http://slim-lang.org
class Slim < RegexLexer
include Indentation
title "Slim"
desc 'The Slim template language'
tag 'slim'
filenames '*.slim'
# Ruby identifier characters
ruby_chars = /[\w\!\?\@\$]/
# Since you are allowed to wrap lines with a backslash, include \\\n in characters
dot = /(\\\n|.)/
def ruby
@ruby ||= Ruby.new(options)
end
def html
@html ||= HTML.new(options)
end
def filters
@filters ||= {
'ruby' => ruby,
'erb' => ERB.new(options),
'javascript' => Javascript.new(options),
'css' => CSS.new(options),
'coffee' => Coffeescript.new(options),
'markdown' => Markdown.new(options),
'scss' => Scss.new(options),
'sass' => Sass.new(options)
}
end
start { ruby.reset!; html.reset! }
state :root do
rule %r/\s*\n/, Text
rule(/\s*/) { |m| token Text; indentation(m[0]) }
end
state :content do
mixin :css
rule %r/\/#{dot}*/, Comment, :indented_block
rule %r/(doctype)(\s+)(.*)/ do
groups Name::Namespace, Text::Whitespace, Text
pop!
end
# filters, shamelessly ripped from HAML
rule %r/(\w*):\s*\n/ do |m|
token Name::Decorator
pop!
starts_block :filter_block
filter_name = m[1].strip
@filter_lexer = self.filters[filter_name]
@filter_lexer.reset! unless @filter_lexer.nil?
puts " slim: filter #{filter_name.inspect} #{@filter_lexer.inspect}" if @debug
end
# Text
rule %r([\|'](?=\s)) do
token Punctuation
pop!
starts_block :plain_block
goto :plain_block
end
rule %r/-|==|=/, Punctuation, :ruby_line
# Dynamic tags
rule %r/(\*)(#{ruby_chars}+\(.*?\))/ do |m|
token Punctuation, m[1]
delegate ruby, m[2]
push :tag
end
rule %r/(\*)(#{ruby_chars}+)/ do |m|
token Punctuation, m[1]
delegate ruby, m[2]
push :tag
end
#rule %r/<\w+(?=.*>)/, Keyword::Constant, :tag # Maybe do this, look ahead and stuff
rule %r((</?[\w\s\=\'\"]+?/?>)) do |m| # Dirty html
delegate html, m[1]
pop!
end
# Ordinary slim tags
rule %r/\w+/, Name::Tag, :tag
end
state :tag do
mixin :css
mixin :indented_block
mixin :interpolation
# Whitespace control
rule %r/[<>]/, Punctuation
# Trim whitespace
rule %r/\s+?/, Text::Whitespace
# Splats, these two might be mergable?
rule %r/(\*)(#{ruby_chars}+)/ do |m|
token Punctuation, m[1]
delegate ruby, m[2]
end
rule %r/(\*)(\{#{dot}+?\})/ do |m|
token Punctuation, m[1]
delegate ruby, m[2]
end
# Attributes
rule %r/([\w\-]+)(\s*)(\=)/ do |m|
token Name::Attribute, m[1]
token Text::Whitespace, m[2]
token Punctuation, m[3]
push :html_attr
end
# Ruby value
rule %r/(\=)(#{dot}+)/ do |m|
token Punctuation, m[1]
#token Keyword::Constant, m[2]
delegate ruby, m[2]
end
# HTML Entities
rule(/&\S*?;/, Name::Entity)
rule %r/#{dot}+?/, Text
rule %r/\s*\n/, Text::Whitespace, :pop!
end
state :css do
rule(/\.[\w-]*/) { token Name::Class; goto :tag }
rule(/#[a-zA-Z][\w:-]*/) { token Name::Function; goto :tag }
end
state :html_attr do
# Strings, double/single quoted
rule(/\s*(['"])#{dot}*?\1/, Literal::String, :pop!)
# Ruby stuff
rule(/(#{ruby_chars}+\(.*?\))/) { |m| delegate ruby, m[1]; pop! }
rule(/(#{ruby_chars}+)/) { |m| delegate ruby, m[1]; pop! }
rule %r/\s+/, Text::Whitespace
end
state :ruby_line do
# Need at top
mixin :indented_block
rule(/[,\\]\s*\n/) { delegate ruby }
rule %r/[ ]\|[ \t]*\n/, Str::Escape
rule(/.*?(?=([,\\]$| \|)?[ \t]*$)/) { delegate ruby }
end
state :filter_block do
rule %r/([^#\n]|#[^{\n]|(\\\\)*\\#\{)+/ do
if @filter_lexer
delegate @filter_lexer
else
token Name::Decorator
end
end
mixin :interpolation
mixin :indented_block
end
state :plain_block do
mixin :interpolation
rule %r((</?[\w\s\=\'\"]+?/?>)) do |m| # Dirty html
delegate html, m[1]
end
# HTML Entities
rule(/&\S*?;/, Name::Entity)
#rule %r/([^#\n]|#[^{\n]|(\\\\)*\\#\{)+/ do
rule %r/#{dot}+?/, Text
mixin :indented_block
end
state :interpolation do
rule %r/#[{]/, Str::Interpol, :ruby_interp
end
state :ruby_interp do
rule %r/[}]/, Str::Interpol, :pop!
mixin :ruby_interp_inner
end
state :ruby_interp_inner do
rule(/[{]/) { delegate ruby; push :ruby_interp_inner }
rule(/[}]/) { delegate ruby; pop! }
rule(/[^{}]+/) { delegate ruby }
end
state :indented_block do
rule(/(?<!\\)\n/) { token Text; reset_stack }
end
end
end
end
|