From 1f4dd4ed6139a57024ae247208b2480592ec7dbd Mon Sep 17 00:00:00 2001 From: shoaibkamil Date: Wed, 11 May 2011 22:06:53 -0700 Subject: [PATCH] Fixed bug in "conversation" importing where
and tags were not being closed. --- lib/jekyll/migrators/tumblr.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll/migrators/tumblr.rb b/lib/jekyll/migrators/tumblr.rb index 0345b4a9..d7cb3969 100644 --- a/lib/jekyll/migrators/tumblr.rb +++ b/lib/jekyll/migrators/tumblr.rb @@ -65,7 +65,7 @@ module Jekyll content << "
" + line['label'] + "
" + line.inner_html + "
" unless line['label'] == nil || line == nil end - content << "
" + content << "
" 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)