PDFMonkey filters
Array filters
push
{% assign arr = "earth wind" | split: " " %}
{% assign arr = arr | push: "fire" %}
{{arr | to_sentence}}earth, wind and fireslice_by
{% assign reindeers = "Dasher Dancer Prancer Vixen Comet Cupid Donner Blitzen Rudolph" | split: " " %}
{% assign reindeerPairs = reindeers | slice_by: 2 %}
{% for reindeerPair in reindeerPairs %}
Pair:
{% for reindeer in reindeerPair %}
- {{reindeer}}
{% endfor %}
{% endfor %}sum
to_sentence
where_exp
Date and time filters
in_time_zone
URL filters
ensure_protocol
Number filters
format
with_delimiter
HTML filters
entities
JSON filters
json
parse_json
Last updated
Was this helpful?
