Quote:
Originally Posted by slowsmile
There's just no way that my plugin can add <i></i> tags to specific text. After all, why would I add such a feature to my plugin when you can already add and remove <i></i> tags in Sigil without using any plugin?
|
The problem is that the <i> </i> is converted to an <i></i>. Soyougettoreadthesentencewithnospaces. This does not seem to happen if other text is inside the tags only with spaces.
Code:
<body>
<p>This<i> </i>is<i> </i>an<i> </i>italic<i> </i>sentence.</p>
</body>
After running CustomCleanerPlus with no options selected:
Code:
<body>
<p>This<i></i>is<i></i>an<i></i>italic<i></i>sentence.</p>
</body>