-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 907 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.css" crossorigin="anonymous">
<title>tex2typst Web App - Conversion between LaTeX math code and Typst</title>
</head>
<body>
<noscript>
<div style="color: red;font-size: 2em;">
We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.
</div>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register("/tex2typst-webapp/sw.js");
}
</script>
</body>
</html>