Merge pull request #5124 from crispgm/fix-ruby-style

Merge pull request 5124
This commit is contained in:
jekyllbot 2016-07-21 10:49:47 -07:00 committed by GitHub
commit eb28b5c296
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ template1 = '{% capture foobar %}foo{{ bar }}{% endcapture %}{{ foo }}{{ foobar
template2 = '{% assign foobar = "foo" | append: bar %}{{ foobar }}'
def render(template)
Liquid::Template.parse(template).render("bar" => "42")
Liquid::Template.parse(template).render("bar" => "42")
end
puts render(template1)