diff --git a/src/rules/pennwell/default.js b/src/rules/pennwell/default.js index c580ba8..f3a19e6 100644 --- a/src/rules/pennwell/default.js +++ b/src/rules/pennwell/default.js @@ -39,7 +39,7 @@ const extractAuthor = ($) => { module.exports = async (body) => { const html = (body || '').replace(/\s\s+/g, ''); - const $ = cheerio.load(html); + const $ = cheerio.load(html, { decodeEntities: false }); const deck = extractDeck($); const author = extractAuthor($);