-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
/** @jsx h */
import { Fragment, h, Helmet } from "../deps/nano_jsx.ts";
import { Markdown } from "../components/Markdown.tsx";
import { Title } from "../components/Title.tsx";
import { Toc } from "../components/Toc.tsx";
import { parseMarkdownFile } from "../markdown.ts";
const { toc, main } = await parseMarkdownFile({
path: new URL("../../installation.md", import.meta.url),
});
export const InstallationToc = () => <Toc html={toc} />;
export const Installation = () => (
<Fragment>
<Helmet>
<Title>Installation</Title>
</Helmet>
<Markdown html={main} />
</Fragment>
);