Skip to content

Instantly share code, notes, and snippets.

@cnrstvns
Created May 1, 2023 16:48
Show Gist options
  • Save cnrstvns/47cdd79ae9117a3724d98c826e00d21a to your computer and use it in GitHub Desktop.
Save cnrstvns/47cdd79ae9117a3724d98c826e00d21a to your computer and use it in GitHub Desktop.
My blog's contentlayer.config.ts
import { defineDocumentType, makeSource } from 'contentlayer/source-files';
import readingTime from 'reading-time';
import rehypePrettyCode from 'rehype-pretty-code';
import remarkGfm from 'remark-gfm';
import { visit } from 'unist-util-visit';
import { theme } from './src/constants/theme';
export const Post = defineDocumentType(() => ({
name: 'Post',
filePathPattern: `**/*.mdx`,
contentType: 'mdx',
fields: {
title: {
type: 'string',
description: 'The title of the post',
required: true,
},
date: {
type: 'date',
description: 'The date of the post',
required: true,
},
description: {
type: 'string',
description: 'The description of the post',
required: true,
},
},
computedFields: {
url: {
type: 'string',
resolve: (post) => `/posts/${post._raw.flattenedPath}`,
},
path: {
type: 'string',
resolve: (post) => post._raw.flattenedPath,
},
createdAt: {
type: 'number',
resolve: (post) => new Date(post.date).getTime(),
},
readingTime: {
type: 'string',
resolve: (post) => readingTime(post.body.raw).text,
},
},
}));
export default makeSource({
contentDirPath: 'src/posts',
documentTypes: [Post],
mdx: {
// Github markdown plugin
remarkPlugins: [remarkGfm],
rehypePlugins: [
// Rehype syntax highlighting plugin
[
rehypePrettyCode,
{
theme,
onVisitLine(node: any) {
if (node.children.length === 0) {
node.children = [{ type: 'text', value: ' ' }];
}
},
onVisitHighlightedLine(node: any) {
node.properties.className.push('line--highlighted');
},
onVisitHighlightedWord(node: any) {
node.properties.className = ['word--highlighted'];
},
},
],
// Transformation to pass raw value to each code block
() => (tree) => {
visit(tree, (node) => {
if (node?.type === 'element' && node?.tagName === 'div') {
if (!('data-rehype-pretty-code-fragment' in node.properties)) {
return;
}
for (const child of node.children) {
if (child.tagName === 'pre') {
child.properties.raw = node.raw;
}
}
}
});
},
],
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment