We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cf37b commit 95bf618Copy full SHA for 95bf618
message-index/templates/default.html
@@ -7,8 +7,8 @@
7
<meta name="viewport" content="width=device-width, initial-scale=1">
8
<meta name="robots" content="noindex">
9
<title>$title$ — Haskell Error Index</title>
10
- <script src="/js/highlight.min.js"></script>
11
<link rel="stylesheet" href="/css/highlight.css">
+ <script src="/js/highlight.min.js"></script>
12
<link rel="stylesheet" href="/css/default.css" />
13
</head>
14
@@ -35,7 +35,9 @@ <h1>$title$</h1>
35
</p>
36
</footer>
37
38
- <script>document.querySelectorAll('code.language-haskell').forEach(el => hljs.highlightElement(el) });</script>
+ <script>document.querySelectorAll('code.language-haskell').forEach(el => {
39
+ hljs.highlightElement(el);
40
+ });</script>
41
</body>
42
43
</html>
0 commit comments