From 96ebdd5cb782e56dc4e1fafb2b19d95f3a5fbfbc Mon Sep 17 00:00:00 2001 From: Bauke Date: Wed, 31 Oct 2018 23:54:35 +0100 Subject: [PATCH] Change div to article in issue table/statistics generation --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 782a77d..bec90cf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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} `