https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15707 --- Comment #78 from Marc Véron <veron@veron.ch> --- (In reply to Kyle M Hall from comment #75) (...)
That way, we can still emphasize names, but the markup will not show. We could even create a filter if we standardize this so we could do something like this: Group [% added.title | $KohaSpan id => 'myId' class => 'name' %] created. (...)
Hi Kyle, I tried the follwing: Group [% '<i>' _ added.title | $KohaSpan id => 'myId' class => 'name' _ '</i>' %] created. ...but it results in a template error. A workaround would be: [% myvalue = added.title | $KohaSpan id => 'myId' class => 'name' %] Group [% '<i>' _ myvalue _ '</i>' %] created. -- You are receiving this mail because: You are watching all bug changes.