wpmathpub is a WordPress.org plug-in that allows you to display mathematical equations within your posts and comments: without LaTEX or MathML on your server. A new version was released today - version 1.0.7.
This version addresses one problem and implements one new feature over the previous version: 1.0.6
One problem resolved in this version...
In a previous thread [ http://wordpress.org/support/topic/180874 ] I discuss an add_filter() priority issue within the wpmathpub.php code. This version of the wpmathpub plugin includes the change discussed in that thread...
Previous version 1.0.6:
add_filter(‘the_content’, ‘to_phpmath’);
New version 1.0.7:
add_filter(‘the_content’, ‘to_phpmath’, 5); // change priority of content filter to 5
One new feature added...
This version adds a new menu to your blog's site admin back-end. See the plugin's Faq page for more details:
http://wordpress.org/extend/plugins/wpmathpub/faq/