generated from Klectr/KTemplate
Triston Armstrong
1071743290
The image insert will throw a dom exception if the image size exceeds the alotted storage provided by local storage. This just lets the user know somethng fufuckedd up and atleast removeds the image after inserting (inknow, dont tell me) This iwill be solved in the future with IDB
21 lines
520 B
HTML
21 lines
520 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<title>Kslab</title>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://unpkg.com/tiny-markdown-editor/dist/tiny-mde.min.css"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="toast-root"></div>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.ts" defer></script>
|
|
</body>
|
|
</html>
|