php-liquid icon indicating copy to clipboard operation
php-liquid copied to clipboard

how to add new tag support?

Open genmancoder opened this issue 1 year ago • 2 comments

It seems there are tags not supported such as section, form, layout, etc. Whenever I use them, I'll get 'Unknow Tag'. How to add support to these tags?

genmancoder avatar Dec 14 '23 17:12 genmancoder

I can only recommend exploring the code and building your own expertise :shrug:

sanmai avatar Dec 15 '23 04:12 sanmai

It should really be added to the documentation, but registerTag is what you're looking for. We extended this package and added our own custom tags such as form, submit, select, input

Here's a simple example of how to do it:

https://github.com/kalimatas/php-liquid/blob/c503efd5a0e5c1cd5542047c560391232851b41e/tests/Liquid/CustomTagTest.php#L41-L44

schmoove avatar Feb 08 '24 09:02 schmoove