Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fourthwall.com/llms.txt

Use this file to discover all available pages before exploring further.

Array filters

In addition to standard Liquid array filters (first, last, size, sort, map, join, etc.):
FilterDescriptionExample
whereFilter by property value{{ products | where: 'available', true }}
limitReturn first N items{% for p in products | limit: 4 %}
pushAdd item to array (non-mutating){{ array | push: item }}

String filters

In addition to standard Liquid string filters (upcase, downcase, capitalize, strip, etc.):
FilterDescriptionExample
camelizeConvert to CamelCase{{ 'my-class' | camelize }}MyClass
handle / handleizeConvert to URL-safe slug{{ 'My Title!' | handleize }}my-title