Thread: Regex examples
View Single Post
Old 06-11-2013, 09:11 AM   #246
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,738
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by Leonatus View Post
But is it possible to keep at least some characters together that really should not be separated, such as the simple quote signs, represented here: › verrückt ‹ - in relation to the ensuing/preceding word?
Non-breaking spaces should work: Insert > Special Character > nbsp

You might also occasionally see extra spaces if the value of the paragraph's text-align property is set to justify.

Try changing it to left to see if it makes a difference. E.g.

Code:
<p style="text-align: left;">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
If it works, change the corresponding paragraph style in the stylesheet to:

Code:
p { text-align: left; }

Last edited by Doitsu; 06-11-2013 at 09:31 AM.
Doitsu is offline   Reply With Quote