Skip to content

Commit

Permalink
Select the first leading element for draft titles
Browse files Browse the repository at this point in the history
Some medium exported drafts have multiple elements with the `graf--leading` class.
When multiples exists the resulting `titleForSlug` can be potentially very long and cause the image fetching to fail due to too long file names.
  • Loading branch information
2color authored Sep 23, 2019
1 parent 830255c commit b21496a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async function gatherPostData(content, options, filePath) {
else {
// construct a canonical link
var canonicalLink = $('footer > p > a').attr('href');
var blogTitle = $(".graf--leading").text()
var blogTitle = $(".graf--leading").first().text()
var titleForSlug = convertToSlug(blogTitle)
}

Expand Down

0 comments on commit b21496a

Please sign in to comment.