Skip to content

Commit

Permalink
Fixed bug in "conversation" importing where <section> and <dialog> ta…
Browse files Browse the repository at this point in the history
…gs were not being closed.
  • Loading branch information
shoaibkamil committed May 12, 2011
1 parent f808c98 commit 1f4dd4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/migrators/tumblr.rb
Expand Up @@ -65,7 +65,7 @@ def self.process(url, grab_images = false)
content << "<dt>" + line['label'] + "</dt><dd>" + line.inner_html + "</dd>" unless line['label'] == nil || line == nil
end

content << "<section><dialog>"
content << "</section></dialog>"
elsif post['type'] == "video"
title = post.at("video-title").inner_html unless post.at("video-title") == nil
content = CGI::unescapeHTML(post.at("video-player").inner_html)
Expand Down

0 comments on commit 1f4dd4e

Please sign in to comment.