liquid
liquid copied to clipboard
Question - Appending whitespaces intentionally
Hi All,
is there a way to append whitespaces? I am trying to append whitespaces to a string if its length is not greater than "7".
Example:
myString = "Test12"
{{ myString | append: ' ' | slice: 0,7 }}
Expected output: "Test12 "
Actual output: "Test12"
Thanks