Fix indentation

This commit is contained in:
crisp 2016-07-22 01:00:09 +08:00
parent a3b179373c
commit 84c4d1998a
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)