We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 122c9d0 commit dda0332Copy full SHA for dda0332
lib/jekyll-import/importers/wordpressdotcom.rb
@@ -169,7 +169,7 @@ def self.process(options)
169
metas[key] = value
170
end
171
172
- author_login = item.text_for("dc|creator").strip
+ author_login = item.text_for("dc:creator").strip
173
174
header = {
175
"layout" => item.post_type,
@@ -227,15 +227,6 @@ def self.process(options)
227
def self.sluggify(title)
228
title.gsub(%r![^[:alnum:]]+!, "-").downcase
229
230
-
231
- def self.select_direct_children(node, path)
232
- node.xpath('./'+path) || node.css(path) || node.children.select { |child| child.name == path }
233
- end
234
235
- def self.select_direct_child(node, path)
236
- children = select_direct_children(node, path)
237
- children.nil? ? nil : children.first
238
239
240
241
0 commit comments