I post using MarsEdit.
Whenever I post something, I noticed that WP-Markdown adds <p> and </p> to each of my paragraphs. (Cant see this view editor on web, Only on MarsEdit)
I found this code in markdown-extra.php to be the culprit.
if ($is_p) {
$value = "<p>$value</p>";
}
$grafs[$key] = $value;
}
I have changed it to
if ($is_p) {
$value = "$value";
}
$grafs[$key] = $value;
}
Not sure if there would be any repercussion, but if you could look into this in your next update would be appreciated.