Update dependencies in package.json and package-lock.json; remove test posts and update welcome post with new content and formatting details.
This commit is contained in:
@@ -3,7 +3,10 @@ import fs from 'fs';
|
||||
import path from 'path';
|
||||
import matter from 'gray-matter';
|
||||
import { remark } from 'remark';
|
||||
import html from 'remark-html';
|
||||
import gfm from 'remark-gfm';
|
||||
import remarkRehype from 'remark-rehype';
|
||||
import rehypeRaw from 'rehype-raw';
|
||||
import rehypeStringify from 'rehype-stringify';
|
||||
|
||||
const postsDirectory = path.join(process.cwd(), 'posts');
|
||||
|
||||
@@ -25,7 +28,12 @@ async function getPostByPath(filePath: string, relPath: string) {
|
||||
const fileContents = fs.readFileSync(filePath, 'utf8');
|
||||
const { data, content } = matter(fileContents);
|
||||
const createdAt = getFileCreationDate(filePath);
|
||||
const processedContent = await remark().use(html).process(content);
|
||||
const processedContent = await remark()
|
||||
.use(gfm)
|
||||
.use(remarkRehype, { allowDangerousHtml: true })
|
||||
.use(rehypeRaw)
|
||||
.use(rehypeStringify)
|
||||
.process(content);
|
||||
return {
|
||||
type: 'post',
|
||||
slug: relPath.replace(/\.md$/, ''),
|
||||
|
||||
Reference in New Issue
Block a user