Change div to article in issue table/statistics generation
This commit is contained in:
parent
014c40fc90
commit
96ebdd5cb7
|
@ -127,7 +127,7 @@ function createTable() {
|
|||
return (aFile.iid > bFile.iid) ? 1 : ((bFile.iid > aFile.iid) ? -1 : 0)
|
||||
})
|
||||
|
||||
let table = 'div(id="issue-table")\n'
|
||||
let table = 'article(id="issue-table")\n'
|
||||
table += ' h2 Issue Table\n'
|
||||
|
||||
table += ' h3(id="opened") Opened\n'
|
||||
|
@ -220,7 +220,7 @@ function createStatistics() {
|
|||
let opened = klaw(openedPath)
|
||||
let closed = klaw(closedPath)
|
||||
|
||||
let statistics = 'div(id="statistics")\n'
|
||||
let statistics = 'article(id="statistics")\n'
|
||||
statistics += ' h2 Statistics\n'
|
||||
|
||||
statistics += ` p In the month of ${month} `
|
||||
|
|
Reference in New Issue