I have a size column on my forms that will print Small, Medium or Large for each line, but I want it to render/print as S, M, or L. Would this be the correct expression to accomplish this? ${item.custcol?html?replace('Small','S')?replace('Medium','M')?replace('Large','L')} Is the ?html necessary?