output in views is always escaped (meant to be a "printable" string). If you need the raw value, you can use XML()
On Thursday, October 25, 2012 6:27:53 PM UTC+2, Annet wrote: > > I'd like to have an IS_IN_SET validator with font sets, this doesn't work: > > fontset=IS_IN_SET(['myriad-pro-1, myriad-pro-2, Myriad, "Trebuchet MS", > sans-serif','"Helvetica Neue", Helvetica, Arial, > sans-serif'],zero=T('select a value')) > > In a view this: > > font-family: {{=session.customtheme.bodyFontFamily}}; > > turn into this: > > font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; > > Is there a way to replace the &qout; with " > > > Kind regards, > > Annet. > --