Remove troublesome FrontMatter pluggin (temporarily)
Cached graph-data, which result in hugely improved build performance and probably browsing experience as well
This commit is contained in:
parent
1a11bdb2b0
commit
233e5ba4ed
@ -65,7 +65,7 @@ export const Transformer = {
|
|||||||
.use(obsidianImage)
|
.use(obsidianImage)
|
||||||
.use(highlight)
|
.use(highlight)
|
||||||
.use(externalLinks, {target: "_blank", rel: ['noopener']})
|
.use(externalLinks, {target: "_blank", rel: ['noopener']})
|
||||||
.use(frontmatter, ['yaml', 'toml'])
|
// .use(frontmatter, ['yaml', 'toml'])
|
||||||
.use(wikiLinkPlugin, {
|
.use(wikiLinkPlugin, {
|
||||||
permalinks: null,
|
permalinks: null,
|
||||||
pageResolver: function (pageName) {
|
pageResolver: function (pageName) {
|
||||||
|
17
lib/utils.js
17
lib/utils.js
@ -3,6 +3,8 @@ import {Transformer} from "./transformer";
|
|||||||
import unified from "unified";
|
import unified from "unified";
|
||||||
import markdown from "remark-parse";
|
import markdown from "remark-parse";
|
||||||
import {toString} from 'mdast-util-to-string'
|
import {toString} from 'mdast-util-to-string'
|
||||||
|
import path from "path";
|
||||||
|
import fs from "fs";
|
||||||
|
|
||||||
const dirTree = require("directory-tree");
|
const dirTree = require("directory-tree");
|
||||||
|
|
||||||
@ -46,7 +48,7 @@ export function getSinglePost(slug) {
|
|||||||
//console.log("hrmlcontents and backlinks")
|
//console.log("hrmlcontents and backlinks")
|
||||||
return {
|
return {
|
||||||
id: slug,
|
id: slug,
|
||||||
...currentFileFrontMatter,
|
// ...currentFileFrontMatter,
|
||||||
data: htmlContent,
|
data: htmlContent,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -100,12 +102,17 @@ export function toSlug(filePath) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export function constructGraphData() {
|
export function constructGraphData() {
|
||||||
|
|
||||||
|
const filepath = path.join(process.cwd(), "graph-data.json");
|
||||||
|
if (Node.isFile(filepath)) {
|
||||||
|
const data = fs.readFileSync(filepath);
|
||||||
|
return JSON.parse(String(data))
|
||||||
|
} else {
|
||||||
const filePaths = getAllMarkdownFiles();
|
const filePaths = getAllMarkdownFiles();
|
||||||
const edges = []
|
const edges = []
|
||||||
const nodes = []
|
const nodes = []
|
||||||
|
|
||||||
filePaths
|
filePaths
|
||||||
.forEach(aFilePath => {
|
.forEach(aFilePath => {
|
||||||
// const {currentFilePath} = getFileNames(filename)
|
// const {currentFilePath} = getFileNames(filename)
|
||||||
@ -133,8 +140,10 @@ export function constructGraphData() {
|
|||||||
// console.log("==============Constructing graph" )
|
// console.log("==============Constructing graph" )
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
const data = {nodes, edges};
|
||||||
return {nodes, edges};
|
fs.writeFileSync(filepath, JSON.stringify(data), "utf-8");
|
||||||
|
return data;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user