Update scripts/

This commit is contained in:
freearhey 2024-12-30 09:33:16 +03:00
parent d9a70f2a1f
commit 2c35704fb0
10 changed files with 282 additions and 0 deletions

13
scripts/core/markdown.ts Normal file
View file

@ -0,0 +1,13 @@
import markdownInclude from 'markdown-include'
export class Markdown {
filepath: string
constructor(filepath: string) {
this.filepath = filepath
}
compile() {
markdownInclude.compileFiles(this.filepath)
}
}