Merge commit '6d8c73'

This commit is contained in:
Tom Preston-Werner
2008-12-21 17:56:08 -08:00

View File

@@ -145,11 +145,11 @@ module Jekyll
#
# Returns <Hash>
def to_liquid
{ "title" => self.data["title"] || "",
self.data.merge({ "title" => self.data["title"] || "",
"url" => self.url,
"date" => self.date,
"id" => self.id,
"content" => self.content }
"content" => self.content })
end
end