Skip to content

Commit 95bf618

Browse files
committed
remove errant <body> tag
1 parent b5cf37b commit 95bf618

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

message-index/templates/default.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<meta name="robots" content="noindex">
99
<title>$title$ — Haskell Error Index</title>
10-
<script src="/js/highlight.min.js"></script>
1110
<link rel="stylesheet" href="/css/highlight.css">
11+
<script src="/js/highlight.min.js"></script>
1212
<link rel="stylesheet" href="/css/default.css" />
1313
</head>
1414

@@ -35,7 +35,9 @@ <h1>$title$</h1>
3535
</p>
3636
</footer>
3737

38-
<script>document.querySelectorAll('code.language-haskell').forEach(el => hljs.highlightElement(el) });</script>
38+
<script>document.querySelectorAll('code.language-haskell').forEach(el => {
39+
hljs.highlightElement(el);
40+
});</script>
3941
</body>
4042

4143
</html>

0 commit comments

Comments
 (0)