Fixed tag referring to article

This commit is contained in:
WillKoehrsen 2019-07-30 08:53:29 -04:00
parent 4b2f3a7a22
commit 1410b56478
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ function convertFromUrl(url) {
return reject(err);
let $ = cheerio.load(body);
let html = $('.postArticle-content').html() || '';
let html = $('article').html() || '';
let markdown = toMarkdown(html, { gfm: true, converters: converters });
resolve(markdown);