I have a quick question about CodeColorer plugin. How can I allow less then (<) and greater then (>) signs in java code. I am asking this because they are used in Generics but they are being stripped away when I use lang = java, so I am forced to use lang = html for now.
Any help is appreciated. Thanks for taking time to read this.
Update:
ok, the issue is resolved now.
The thing was that anything resembling html, like , was stripped by WordPress for all roles less then admin. I added this code to make it work for contributor,
$role = get_role( 'contributor' ); $role->add_cap( 'unfiltered_html' );
This resolved the issue.