📝 Edit on GitHub
Whitespace
Variable
Trim whitespace from value.
liquid
Raw
raw
tag without the whitespace. This is useful inside capture
tag.
liquid{% highlight ruby %}
def foo
puts 'foo'
end
{% endhighlight %}
Note the endraw
cannot start with %-
.
This would give too much whitespace:
{% highlight ruby %} def foo puts ‘foo’ end {% endhighlight %}