views:

57

answers:

1

Dear all, need some help from smarty expert. I am new in smarty template engine.

I would like to escape a single quote in a string, how can I do that inside my .tpl

I got a if else condition

$current_category.category eq 'King's Tea' 

the problem is the 'King's Tea' , that is my category name, I tried 'King\'s Tea' , Smarty can't convert it

I tried {litereal}'King's Tea'{/litereal}, this one doesn't work in if else condition.

is there any way I can escape the single quote?

I tried to search in smarty API side. the escape page, just tell us how to escape from the variable.

A: 

$current_category.category eq "King's Tea"

Shiro