Skip to content

Commit e804a3b

Browse files
Alexander SvenssonAlexander Svensson
Alexander Svensson
authored and
Alexander Svensson
committed
Added: RegEx parsing of HTML
1 parent e30b922 commit e804a3b

12 files changed

+50
-0
lines changed

test/expected/custom_options.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
9+
10+
<!-- inject type:"js" files:"[scripts/vendor/*.js]" order:"[modernizr.js, jQuery.js]"-->
11+
12+
<!-- inject type:"js" files:"[scripts/**/*.js, !scripts/exclude.js]" -->
13+
14+
</body>
15+
</html>

test/expected/default_options.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
9+
10+
<!-- inject type:"js" files:"[scripts/vendor/*.js]" order:"[modernizr.js, jQuery.js]"-->
11+
12+
<!-- inject type:"js" files:"[scripts/**/*.js, !scripts/exclude.js]" -->
13+
14+
</body>
15+
</html>

test/fixtures/scripts/exclude.js

Whitespace-only changes.

test/fixtures/scripts/main.js

Whitespace-only changes.

test/fixtures/scripts/module.js

Whitespace-only changes.

test/fixtures/scripts/vendor/jQuery.js

Whitespace-only changes.

test/fixtures/scripts/vendor/modernizr.js

Whitespace-only changes.

test/fixtures/styles/exclude.css

Whitespace-only changes.

test/fixtures/styles/footer.css

Whitespace-only changes.

test/fixtures/styles/head.css

Whitespace-only changes.

test/fixtures/styles/vendor/vendor.css

Whitespace-only changes.

test/fixtures/test.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
7+
<!-- inject: "type":"css", "files":["styles/**/*.css", "!styles/exclude.css", "!styles/vendor/**/*", "!styles/footer.css"] -->
8+
9+
</head>
10+
<body>
11+
12+
13+
<!-- inject: "type":"js", "files":["scripts/vendor/*.js"], "order":["modernizr.js", "jQuery.js"] -->
14+
15+
<!-- inject: "type":"js", "files":["scripts/**/*.js", "!scripts/exclude.js"] -->
16+
17+
<!-- inject: "type":"css", "files":["styles/vendor/**/*", "styles/footer.css"] -->
18+
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)