<?php
/*
Plugin Name: mimetex
Plugin URI: http://wtnb.mydns.jp/wordpress/
Description: tex記法で数式を記述できるようになります。
Author: Watanabe Takashi <t@wtnb.mydns.jp>
Author URI: http://wtnb.mydns.jp/wordpress/
*/
function tex_func($attrs, $content){
  $baseurl='/cgi-bin/mimetex.cgi';
  $content = str_replace("&#8216;", "'", $content);
  $content = str_replace("&#8221;", '"', $content);
  $content = str_replace("&#8220;", '"', $content);
  $content = html_entity_decode($content);
  $hs=htmlspecialchars($content, ENT_QUOTES, 'UTF-8');
  $ul=urlencode($content);
  return '<img src="'.$baseurl.'?'.$hs.'" title="'.$hs.'" alt="'.$hs.'" border="0" align="absmiddle" />';
}
add_shortcode('tex', 'tex_func');
?>
