mirror of
https://github.com/AderKonstantin/aderktech-chronark.com-.git
synced 2025-06-07 21:28:41 +03:00
103 lines
2.0 KiB
JavaScript
103 lines
2.0 KiB
JavaScript
import { defineDocumentType, makeSource } from "contentlayer/source-files";
|
|
import remarkGfm from "remark-gfm";
|
|
import rehypePrettyCode from "rehype-pretty-code";
|
|
import rehypeSlug from "rehype-slug";
|
|
import rehypeAutolinkHeadings from "rehype-autolink-headings";
|
|
|
|
/** @type {import('contentlayer/source-files').ComputedFields} */
|
|
const computedFields = {
|
|
path: {
|
|
type: "string",
|
|
resolve: (doc) => `/${doc._raw.flattenedPath}`,
|
|
},
|
|
slug: {
|
|
type: "string",
|
|
resolve: (doc) => doc._raw.flattenedPath.split("/").slice(1).join("/"),
|
|
},
|
|
};
|
|
|
|
export const Project = defineDocumentType(() => ({
|
|
name: "Project",
|
|
filePathPattern: "./projects/**/*.mdx",
|
|
contentType: "mdx",
|
|
|
|
fields: {
|
|
published: {
|
|
type: "boolean",
|
|
},
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
date: {
|
|
type: "date",
|
|
},
|
|
url: {
|
|
type: "string",
|
|
},
|
|
repository: {
|
|
type: "string",
|
|
},
|
|
},
|
|
computedFields,
|
|
}));
|
|
|
|
export const Page = defineDocumentType(() => ({
|
|
name: "Page",
|
|
filePathPattern: "pages/**/*.mdx",
|
|
contentType: "mdx",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: "string",
|
|
},
|
|
},
|
|
computedFields,
|
|
}));
|
|
|
|
export default makeSource({
|
|
contentDirPath: "./content",
|
|
documentTypes: [Page, Project],
|
|
mdx: {
|
|
remarkPlugins: [remarkGfm],
|
|
rehypePlugins: [
|
|
rehypeSlug,
|
|
[
|
|
rehypePrettyCode,
|
|
{
|
|
theme: "github-dark",
|
|
onVisitLine(node) {
|
|
// Prevent lines from collapsing in `display: grid` mode, and allow empty
|
|
// lines to be copy/pasted
|
|
if (node.children.length === 0) {
|
|
node.children = [{ type: "text", value: " " }];
|
|
}
|
|
},
|
|
onVisitHighlightedLine(node) {
|
|
node.properties.className.push("line--highlighted");
|
|
},
|
|
onVisitHighlightedWord(node) {
|
|
node.properties.className = ["word--highlighted"];
|
|
},
|
|
},
|
|
],
|
|
[
|
|
rehypeAutolinkHeadings,
|
|
{
|
|
properties: {
|
|
className: ["subheading-anchor"],
|
|
ariaLabel: "Link to section",
|
|
},
|
|
},
|
|
],
|
|
],
|
|
},
|
|
});
|