feat: migrate to starlight

This commit is contained in:
DuroCodes
2024-05-06 17:15:30 -04:00
parent 767acedea7
commit bb190f2d81
15140 changed files with 2828326 additions and 35408 deletions

26
node_modules/marked/src/Hooks.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
import { defaults } from './defaults.js';
export class Hooks {
constructor(options) {
this.options = options || defaults;
}
static passThroughHooks = new Set([
'preprocess',
'postprocess'
]);
/**
* Process markdown before marked
*/
preprocess(markdown) {
return markdown;
}
/**
* Process HTML after marked is finished
*/
postprocess(html) {
return html;
}
}