Skip to content

Commit dda0332

Browse files
committed
Fix dc:creator
1 parent 122c9d0 commit dda0332

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

lib/jekyll-import/importers/wordpressdotcom.rb

+1-10
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def self.process(options)
169169
metas[key] = value
170170
end
171171

172-
author_login = item.text_for("dc|creator").strip
172+
author_login = item.text_for("dc:creator").strip
173173

174174
header = {
175175
"layout" => item.post_type,
@@ -227,15 +227,6 @@ def self.process(options)
227227
def self.sluggify(title)
228228
title.gsub(%r![^[:alnum:]]+!, "-").downcase
229229
end
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-
end
239230
end
240231
end
241232
end

0 commit comments

Comments
 (0)