-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
49 lines (49 loc) · 1.57 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="candy-root candy-scrollbar">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="content-security-policy"
content="
default-src 'self' https://plausible.io;
script-src 'self' https://plausible.io;
img-src 'self' https://plausible.io;
style-src 'self' 'unsafe-inline';
"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>codehost | Syntax highlighter for cohost</title>
<script src="/lib/chroma.min.js"></script>
<script type="module" src="/prism/prism.js"></script>
<script type="module" src="/src/main.tsx"></script>
<script
defer
data-domain="codehost.wavebeem.com"
src="https://plausible.io/js/script.js"
></script>
</head>
<body>
<header>
<h1>codehost</h1>
<div class="candy-card">
Generate syntax highlighted code blocks for
<a class="candy-link" href="https://cohost.org/">cohost</a>. Please submit
feature requests and bug reports on
<a class="candy-link" href="https://github.com/wavebeem/codehost"
>GitHub</a
>. See what's new in the
<a
class="candy-link"
href="https://github.com/wavebeem/codehost/blob/main/CHANGELOG.md"
>changelog</a
>.
</div>
</header>
<div id="root"></div>
<noscript>JavaScript is required.</noscript>
<footer class="footer">
© 2023
<a class="candy-link" href="https://www.wavebeem.com">Sage Fennel</a>
</footer>
</body>
</html>