diff --git a/islands/DocSearch.tsx b/islands/DocSearch.tsx
index e3a2c00..26a7de2 100644
--- a/islands/DocSearch.tsx
+++ b/islands/DocSearch.tsx
@@ -40,8 +40,7 @@ export default function DocSearch(props: {
onSearch={(s) => {
setDocs(index.search(s));
}}
- >
-
+ />
Doc
{docs.map((doc) => {
diff --git a/keyout.ts b/keyout.ts
index c4eb8dd..87b7720 100644
--- a/keyout.ts
+++ b/keyout.ts
@@ -1,5 +1,4 @@
import { Command } from "https://deno.land/x/cliffy@v0.25.6/mod.ts";
-import { fromFileUrl, join } from "path/mod.ts";
import { prepareSecretKey } from "./util/secret.ts";
export const key_out_cmd = new Command();
diff --git a/routes/_middleware.ts b/routes/_middleware.ts
index bf73649..907afc1 100644
--- a/routes/_middleware.ts
+++ b/routes/_middleware.ts
@@ -1,7 +1,5 @@
import {
- HandlerContext,
MiddlewareHandlerContext,
- Status,
} from "$fresh/server.ts";
import { getCookies } from "http/cookie.ts";
import { verify } from "djwt";
diff --git a/search.ts b/search.ts
index c576163..3316ad5 100644
--- a/search.ts
+++ b/search.ts
@@ -1,6 +1,6 @@
import { Command } from "https://deno.land/x/cliffy@v0.25.6/mod.ts";
import { Index } from "./src/client_search.ts";
-import { Doc, DocCollector, loadDocuments } from "./src/collect.ts";
+import { DocCollector, loadDocuments } from "./src/collect.ts";
export async function collectDocuments(path: string, out: string) {
const collector = new DocCollector({ summaryOnly: true, dropContent: true });
diff --git a/src/readDoc.ts b/src/readDoc.ts
index 67889cc..bc2f593 100644
--- a/src/readDoc.ts
+++ b/src/readDoc.ts
@@ -1,6 +1,5 @@
import {
parse as parseYaml,
- stringify,
} from "https://deno.land/std@0.170.0/encoding/yaml.ts";
function trimSubstring(str: string, start: number, end: number) {