Merge pull request #2908 from alfredxing/document-path
This commit is contained in:
commit
e39dfa3f0b
|
@ -240,8 +240,8 @@ module Jekyll
|
|||
Utils.deep_merge_hashes data, {
|
||||
"output" => output,
|
||||
"content" => content,
|
||||
"path" => path,
|
||||
"relative_path" => relative_path,
|
||||
"path" => relative_path,
|
||||
"url" => url,
|
||||
"collection" => collection.label
|
||||
}
|
||||
|
|
|
@ -48,6 +48,10 @@ class TestDocument < Test::Unit::TestCase
|
|||
assert_equal @document.to_liquid['collection'], "methods"
|
||||
end
|
||||
|
||||
should "output its relative path as path in Liquid" do
|
||||
assert_equal @document.to_liquid['path'], "_methods/configuration.md"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
context "a document as part of a collection with frontmatter defaults" do
|
||||
|
|
Loading…
Reference in New Issue