diff --git a/lib/routes/everything/changes.js b/lib/routes/everything/changes.js
index 926f8a362..91cebe73b 100644
--- a/lib/routes/everything/changes.js
+++ b/lib/routes/everything/changes.js
@@ -15,7 +15,7 @@ module.exports = async (ctx) => {
item = item.indexOf('\n') === 0 ? item.substr(2, item.length - 2) : item;
const title = item.split('\n')[0].split(':');
- const description = item.split(title[1])[1].replace(/\t/g, '
').replace(/\n/g, '');
+ const description = `${item.split(title[1])[1].replace(/\t/g, '- ').replace(/\n/g, '
')}
`;
return {
description,
diff --git a/lib/routes/xyplorer/whatsnew.js b/lib/routes/xyplorer/whatsnew.js
index f7319e666..cf0001d5b 100644
--- a/lib/routes/xyplorer/whatsnew.js
+++ b/lib/routes/xyplorer/whatsnew.js
@@ -17,7 +17,7 @@ module.exports = async (ctx) => {
item = $(item);
return {
link: currentUrl,
- description: item.html(),
+ description: ``,
title: item.prev().prev().text(),
pubDate: date(item.prev().text().replace('released ', '')),
};