blob: c79a67084431c959f6479076ebde98e2cb275925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { parse as parseDjot } from "@djot/djot";
import { parse as parseToml } from "@std/toml";
import { Config } from "../config.ts";
import {
createNewDocumentFromDjotDocument,
Document,
PostMetadata,
PostMetadataSchema,
} from "./document.ts";
import toHtml from "./to_html.ts";
export async function parseDjotFile(
filePath: string,
config: Config,
): Promise<Document> {
try {
const fileContent = await Deno.readTextFile(filePath);
const [, frontmatter, ...rest] = fileContent.split(/^---$/m);
const meta = parseMetadata(frontmatter);
const root = parseDjot(rest.join("\n"));
const doc = createNewDocumentFromDjotDocument(root, meta, filePath, config);
return await toHtml(doc);
} catch (e) {
if (e instanceof Error) {
e.message = `${e.message} in ${filePath}`;
}
throw e;
}
}
function parseMetadata(s: string): PostMetadata {
return PostMetadataSchema.parse(parseToml(s));
}
|