@Doitsu: Thanks for testing the plugin
@gipsy: In your code:
Code:
r'([\p{Greek}\,\'–’“”][</ib>]*)</p>\s+<p>([<ib>]*[\p{Greek},\'–’“”])'
you have escaped the comma with a slash - there is no need to do this as the r in front of the code (stands for raw) means that you do not need to escape characters; however, you do need to escape the single quote mark otherwise this would signify the end of the expression. I presume that {Greek} represents Greek characters?