How to match a hexadecimal value in liquid templates with regex? – Shopify
Desired result Content editors can enter hexadecimal values in Shopify for a background-color. How can you check with Liquid template's control flow if a given input is a valid hexadecimal? The regex that needs to be implemented: ^#(?:[0-9a-fA-F]{3}){1,2}$ The Liquid…