MyBB Community Forums
remove copyright symbol - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: remove copyright symbol (/thread-205007.html)



remove copyright symbol - metulburr - 2016-10-12

In mybb editor if you type ( c ) without spaces, you get the copyright symbol. ©  I would like to remove this...but i do not know how?


RE: remove copyright symbol - .m. - 2016-10-12

see this reply & related code lines


RE: remove copyright symbol - metulburr - 2016-10-12

Quote:Don't do the ( )

This would of course work. But the reason i want to remove it is because i am using a different codebox for a syntax highlighter. When someone puts code in such as
def func(c): pass
it destroys the content of the codebox by replacing it with the symbol.

            //$standard_mycode['copy']['regex'] = "#\(c\)#i";
            //$standard_mycode['copy']['replacement'] = "©";

            //$standard_mycode['tm']['regex'] = "#\(tm\)#i";
            //$standard_mycode['tm']['replacement'] = "™";

            //$standard_mycode['reg']['regex'] = "#\(r\)#i";
            //$standard_mycode['reg']['replacement'] = "®";
thank you