When using the plugin to edit specific paragraphs, it does not recognize paragraphs properly. This is due to the fact that the regex in the function split (fields/post.php, around line 143) does not take line-breaks into account. This is easily remedied by adding an "s" at the end of the expression. It makes sure that line breaks are also matched by the . (dot) operator.
protected function split( $content, $autop = false ) {
if ( $autop )
$content = wpautop( $content );
preg_match_all( "#<p.*?>(.*?)</p>#s", $content, $matches );
return $matches[1];
}
Regards,
Joost.