Search code examples
stringxwiki

XWiki convert to uppercase macro


I need to convert the results of other macros to uppercase. Something like,

{{caps}}<Some macros>{{/caps}}

Catch is that I can't use XWiki programming scripts.


Solution

  • You can use CSS:

    text-transform: uppercase;
    

    just identify the CSS generated class.