fix: narrowed selector to fix blogspot title selector

This commit is contained in:
Adam Pash 2016-10-26 11:16:31 -07:00
parent d3b11be473
commit c63f500433
3 changed files with 3 additions and 3 deletions

2
dist/mercury.js vendored
View File

@ -417,7 +417,7 @@ var BloggerExtractor = {
},
title: {
selectors: ['h2.title']
selectors: ['.post h2.title']
},
date_published: {

2
dist/mercury.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -26,7 +26,7 @@ export const BloggerExtractor = {
title: {
selectors: [
'h2.title',
'.post h2.title',
],
},