lstrip

Removes all whitespaces (tabs, spaces, and newlines) from the beginning of a string. The filter does not affect spaces between words.

Input
  • {{ '          Hello!         ' | lstrip }}
Output
  • Hello!