Remove extra space when adding an underline
When you have two underlined words after each other.
You will see an extra "space" (in yellow below) underlined before the last underlined word.
You can remove this by adding an extra PageReady script to your question:
Add the following in this script:
<html>
<script>
function pageReady() {
$('u').each(function() {
$(this).html($(this).html().replace(' ', ''));
$(this).after(" ");
});
}
</script>
</html>