Skip to content

Commit b2ac93a

Browse files
committed
1 parent f4fbda9 commit b2ac93a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Diff for: index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!DOCTYPE html>
12
<head>
23
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:600" rel="stylesheet">
34
<link href="styles/list.css" rel="stylesheet" type="text/css">
@@ -770,4 +771,4 @@ <h3>03_A</h3>
770771
<span class="btn--link">Cover_Lines</span>
771772
</a>
772773
</nav></section>
773-
</body>
774+
</body>

Diff for: libraries/setup.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ for (var libName in sources) {
1919

2020
// generate index.html file with links to all sketches
2121
var sketches = glob.sync('../0*/*_*/sketch.js');
22-
var html = '<head>\n';
22+
var html = '<!DOCTYPE html>\n<head>\n';
2323
html += '\t<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:600" rel="stylesheet">\n';
2424
html += '\t<link href="styles/list.css" rel="stylesheet" type="text/css">\n';
2525
html += '</head>\n<body>\n<section><nav>\n';
@@ -39,5 +39,5 @@ sketches.forEach(function(sketchPath) {
3939
html += '\t<span class="btn--link">' + name + '</span>\n';
4040
html += '</a>\n';
4141
});
42-
html += '</nav></section>\n</body>';
42+
html += '</nav></section>\n</body>\n';
4343
fs.write('../index.html', html);

0 commit comments

Comments
 (0)