Delete markdown-include package

This commit is contained in:
freearhey 2025-01-21 18:50:53 +03:00
parent 700de1b737
commit 002a3ec5c6
5 changed files with 0 additions and 61 deletions

View file

@ -13,4 +13,3 @@ export * from './queueCreator'
export * from './issueLoader'
export * from './issueParser'
export * from './htmlTable'
export * from './markdown'

View file

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