Files
Docs-Viewer/index.html
litruv 10e9f7ac2f Port Docs-Viewer to slatehtml as the docs-viewer package.
Replace the classic DOM shell with slate widgets, markdown→slate rendering, and a CI index build that uses build-docs.cjs.
2026-08-02 20:48:31 +10:00

25 lines
555 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Docs Viewer</title>
<style>
html,
body {
margin: 0;
height: 100%;
background: #1e1e2e;
color: #c6d0f5;
}
html:not([data-ready]) {
visibility: hidden;
}
</style>
</head>
<body>
<slate-docs-viewer index="./index.json"></slate-docs-viewer>
<script type="module" src="./demo/main.js"></script>
</body>
</html>