diff --git a/scripts/core/markdown.js b/scripts/core/markdown.js
index 3d735b18..2729f0b7 100644
--- a/scripts/core/markdown.js
+++ b/scripts/core/markdown.js
@@ -3,38 +3,6 @@ const file = require('./file')
const markdown = {}
-markdown.createTable = function (data, cols) {
- let output = '
\n'
-
- output += ' \n '
- for (let column of cols) {
- output += `${column} | `
- }
- output += '
\n \n'
-
- output += ' \n'
- for (let groupId in data) {
- const group = data[groupId]
- for (let [i, item] of group.entries()) {
- const rowspan = group.length > 1 ? ` rowspan="${group.length}"` : ''
- output += ' '
- if (i === 0) {
- const name = item.flag ? `${item.flag} ${item.name}` : item.name
- output += `${name} | `
- }
- output += `${item.channels} | `
- output += `${item.epg} | `
- output += `${item.status} | `
- output += '
\n'
- }
- }
- output += ' \n'
-
- output += '
'
-
- return output
-}
-
markdown.compile = function (filepath) {
markdownInclude.compileFiles(file.resolve(filepath))
}