mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import markdownInclude from 'markdown-include'
|
|
|
|
export class Markdown {
|
|
filepath: string
|
|
|
|
constructor(filepath: string) {
|
|
this.filepath = filepath
|
|
}
|
|
|
|
compile() {
|
|
markdownInclude.compileFiles(this.filepath)
|
|
}
|
|
}
|