add ssh key format post

This commit is contained in:
2024-07-07 12:13:15 -04:00
parent 60bc85d49a
commit 8e58d6824a
6 changed files with 99 additions and 3 deletions

View File

@ -6,6 +6,10 @@ import fs from 'node:fs';
// build table of contents and inject into frontmatter
export function localRemark() {
return (tree, vfile) => {
if (vfile.data.fm.toc === false) {
return;
}
let toc = [];
let description = null;