-
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Would be awesome if posthtml-expressions
offered support for filters, like Nunjucks does.
So you could do stuff like:
locals: { greeting: 'hello there' }
<p>
{{ greeting | capitalize }}
</p>
<p>
Hello there
</p>
...or:
<div>{{ [1,2,3] | first }}</div>
<div>1</div>