forked from beautifier/js-beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beautify-css.js
198 lines (166 loc) · 5.01 KB
/
beautify-css.js
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
/*
CSS Beautifier
---------------
Written by Harutyun Amirjanyan, ([email protected])
Based on code initially developed by: Einar Lielmanis, <[email protected]>
http://jsbeautifier.org/
You are free to use this in any way you want, in case you find this useful or working for you.
Usage:
css_beautify(source_text);
css_beautify(source_text, options);
The options are:
indent_size (default 4) — indentation size,
indent_char (default space) — character to indent with,
e.g
css_beautify(css_source_text, {
'indent_size': 1,
'indent_char': '\t'
});
*/
// http://www.w3.org/TR/CSS21/syndata.html#tokenization
// http://www.w3.org/TR/css3-syntax/
function css_beautify(source_text, options) {
options = options || {};
var indentSize = options.indent_size || 4;
var indentCharacter = options.indent_char || ' ';
// compatibility
if (typeof indentSize == "string")
indentSize = parseInt(indentSize);
// tokenizer
var whiteRe = /^\s+$/;
var wordRe = /[\w$\-_]/;
var pos = -1, ch;
function next() {
return ch = source_text.charAt(++pos)
}
function peek() {
return source_text.charAt(pos+1)
}
function eatString(comma) {
var start = pos;
while(next()){
if (ch=="\\"){
next();
next();
} else if (ch == comma) {
break;
} else if (ch == "\n") {
break;
}
}
return source_text.substring(start, pos + 1);
}
function eatWhitespace() {
var start = pos;
while (whiteRe.test(peek()))
pos++;
return pos != start;
}
function skipWhitespace() {
var start = pos;
do{
}while (whiteRe.test(next()))
return pos != start + 1;
}
function eatComment() {
var start = pos;
next();
while (next()) {
if (ch == "*" && peek() == "/") {
pos ++;
break;
}
}
return source_text.substring(start, pos + 1);
}
function lookBack(str, index) {
return output.slice(-str.length + (index||0), index).join("").toLowerCase() == str;
}
// printer
var indentString = source_text.match(/^[\r\n]*[\t ]*/)[0];
var singleIndent = Array(indentSize + 1).join(indentCharacter);
var indentLevel = 0;
function indent() {
indentLevel++;
indentString += singleIndent;
}
function outdent() {
indentLevel--;
indentString = indentString.slice(0, -indentSize);
}
print = {}
print["{"] = function(ch) {
print.singleSpace();
output.push(ch);
print.newLine();
}
print["}"] = function(ch) {
print.newLine();
output.push(ch);
print.newLine();
}
print.newLine = function(keepWhitespace) {
if (!keepWhitespace)
while (whiteRe.test(output[output.length - 1]))
output.pop();
if (output.length)
output.push('\n');
if (indentString)
output.push(indentString);
}
print.singleSpace = function() {
if (output.length && !whiteRe.test(output[output.length - 1]))
output.push(' ');
}
var output = [];
if (indentString)
output.push(indentString);
/*_____________________--------------------_____________________*/
while(true) {
var isAfterSpace = skipWhitespace();
if (!ch)
break;
if (ch == '{') {
indent();
print["{"](ch);
} else if (ch == '}') {
outdent();
print["}"](ch);
} else if (ch == '"' || ch == '\'') {
output.push(eatString(ch))
} else if (ch == ';') {
output.push(ch, '\n', indentString);
} else if (ch == '/' && peek() == '*') { // comment
print.newLine();
output.push(eatComment(), "\n", indentString);
} else if (ch == '(') { // may be a url
output.push(ch);
eatWhitespace();
if (lookBack("url", -1) && next()) {
if (ch != ')' && ch != '"' && ch != '\'')
output.push(eatString(')'));
else
pos--;
}
} else if (ch == ')') {
output.push(ch);
} else if (ch == ',') {
eatWhitespace();
output.push(ch);
print.singleSpace();
} else if (ch == ']') {
output.push(ch);
} else if (ch == '[' || ch == '=') { // no whitespace before or after
eatWhitespace();
output.push(ch);
} else {
if (isAfterSpace)
print.singleSpace();
output.push(ch);
}
}
var sweetCode = output.join('').replace(/[\n ]+$/, '');
return sweetCode;
}
if (typeof exports !== "undefined")
exports.css_beautify = css_beautify;