2023-10-30 19:33:37 +00:00
|
|
|
import type { HeadConfig, TransformContext } from "vitepress";
|
|
|
|
|
|
|
|
export function generateMeta(context: TransformContext, hostname: string) {
|
|
|
|
const head: HeadConfig[] = [];
|
|
|
|
const { pageData } = context;
|
|
|
|
|
|
|
|
const url = `${hostname}/${pageData.relativePath.replace(/((^|\/)index)?\.md$/, "$2")}`;
|
|
|
|
|
|
|
|
head.push(["link", { rel: "canonical", href: url }]);
|
|
|
|
head.push(["meta", { property: "og:url", content: url }]);
|
|
|
|
head.push(["meta", { name: "twitter:url", content: url }]);
|
|
|
|
head.push(["meta", { name: "twitter:card", content: "summary_large_image" }]);
|
2023-10-31 15:12:36 +00:00
|
|
|
head.push(["meta", { name: "theme-color", content: "#7bc5e4" }]);
|
|
|
|
head.push(["meta", { property: "og:type", content: "website" }]);
|
2023-10-30 19:33:37 +00:00
|
|
|
|
|
|
|
if (pageData.frontmatter.description) {
|
|
|
|
head.push([
|
|
|
|
"meta",
|
|
|
|
{
|
|
|
|
property: "og:description",
|
|
|
|
content: pageData.frontmatter.description,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
head.push([
|
|
|
|
"meta",
|
|
|
|
{
|
|
|
|
name: "twitter:description",
|
|
|
|
content: pageData.frontmatter.description,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
head.push(["meta", { property: "og:title", content: pageData.frontmatter.title }]);
|
|
|
|
head.push(["meta", { name: "twitter:title", content: pageData.frontmatter.title }]);
|
|
|
|
|
|
|
|
if (pageData.frontmatter.image) {
|
|
|
|
head.push([
|
|
|
|
"meta",
|
|
|
|
{
|
|
|
|
property: "og:image",
|
|
|
|
content: `${hostname}/${pageData.frontmatter.image.replace(/^\//, "")}`,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
head.push([
|
|
|
|
"meta",
|
|
|
|
{
|
|
|
|
name: "twitter:image",
|
|
|
|
content: `${hostname}/${pageData.frontmatter.image.replace(/^\//, "")}`,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
}
|
2023-10-31 15:12:36 +00:00
|
|
|
|
2023-10-30 19:33:37 +00:00
|
|
|
if (pageData.lastUpdated && pageData.frontmatter.lastUpdated !== false) {
|
|
|
|
head.push([
|
|
|
|
"meta",
|
|
|
|
{
|
|
|
|
property: "article:modified_time",
|
|
|
|
content: new Date(pageData.lastUpdated).toISOString(),
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|