In this post, I’ll look at leveraging Intershop’s CustomTag to create customfunctionality in ISML templates. The problem I wanted to capitalize a certain value from the pipeline dictionary inan ISML template. Intershop provides ISML functions of the kind ucaseand lcase to transform a string to uppercase or lowercaserespectively. When the value of the dictionary name Product:Name isAwesomeNotebook: <isprintvalue="#ucase(Product:Name)#"> This will print AWESOMENOTEBOOK. Unfortunately, a sim...