I have uploaded version 1.15r of the script which should fix any problems with extra line breaks being added by the script.
For those of you who have already converted, running the following queries should correct this problem. Run the queries in the order specified below:
First:
Code:
UPDATE post set pagetext=replace(pagetext,'\n\n\n\r','\r\r');
Second:
Code:
UPDATE post set pagetext=replace(pagetext,'\n\n\r','\r\r');
Third:
Code:
UPDATE post set pagetext=replace(pagetext,'\n\n','\r\r');
Fourth:
Code:
UPDATE post set pagetext=replace(pagetext,'\n',' ');
Backup your database before attempting this.