Merge pull request #328 from shoaibkamil/master
Bugfix in tumblr importer
This commit is contained in:
commit
13f1cf5832
|
@ -65,7 +65,7 @@ module Jekyll
|
||||||
content << "<dt>" + line['label'] + "</dt><dd>" + line.inner_html + "</dd>" unless line['label'] == nil || line == nil
|
content << "<dt>" + line['label'] + "</dt><dd>" + line.inner_html + "</dd>" unless line['label'] == nil || line == nil
|
||||||
end
|
end
|
||||||
|
|
||||||
content << "<section><dialog>"
|
content << "</section></dialog>"
|
||||||
elsif post['type'] == "video"
|
elsif post['type'] == "video"
|
||||||
title = post.at("video-title").inner_html unless post.at("video-title") == nil
|
title = post.at("video-title").inner_html unless post.at("video-title") == nil
|
||||||
content = CGI::unescapeHTML(post.at("video-player").inner_html)
|
content = CGI::unescapeHTML(post.at("video-player").inner_html)
|
||||||
|
|
Loading…
Reference in New Issue