Hi,
I'm using the function on http://www.wprecipes.com/disable-wordpress-automatic-formatting-on-posts-using-a-shortcode
It will add unwanted p tags to the code.
e.g.
So if you can add a filter to the content in line 63 and 223 of digg-digg.php file.
$modified_content= apply_filters('digg-digg-content',$modified_content);
That would be a great help.
Then i can use the code below in theme functions.php file to fix the issue.
function theme_fix_digg_raw($content) { return '[raw]'.$content.'[/raw]'; }
add_filter('digg-digg-content', 'theme_fix_digg_raw');
Thanks!
Regards,
KaptinLin