fix toolsguide

This commit is contained in:
taskylizard
2023-11-12 23:18:18 +05:30
parent 4e2f5d7232
commit ff0822088d
2 changed files with 17 additions and 17 deletions

View File

@@ -13,22 +13,22 @@ export function generateMeta(context: TransformContext, hostname: string) {
head.push(["meta", { property: "og:title", content: pageData.frontmatter.title }]);
head.push(["meta", { name: "twitter:title", content: pageData.frontmatter.title }]);
head.push([
"meta",
{
property: "og:description",
content: pageData.frontmatter.description,
},
]);
head.push([
"meta",
{
name: "twitter:description",
content: pageData.frontmatter.description,
},
]);
if (pageData.frontmatter.description) {
head.push([
"meta",
{
property: "og:description",
content: pageData.frontmatter.description,
},
]);
head.push([
"meta",
{
name: "twitter:description",
content: pageData.frontmatter.description,
},
]);
}
if (pageData.frontmatter.image) {
head.push([
"meta",