-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 880 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
<!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/[email protected]/dist/katex.min.css" crossorigin="anonymous">
<title>tex2typst Web App - Convert LaTex formula code to Typst</title>
</head>
<body>
<noscript style="color: red;font-size: 2em;">
We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script>
if (!navigator.serviceWorker.controller) {
navigator.serviceWorker.register("/tex2typst-webapp/sw.js");
}
</script>
</body>
</html>