fixed cleanup preceding block elements, regex was using [] instead of ()
diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php
index 0c4a978..a4d1e35 100644
--- a/system/libraries/Typography.php
+++ b/system/libraries/Typography.php
@@ -196,9 +196,9 @@
// Clean up stray paragraph tags that appear before block level elements
'#<p></p><('.$this->block_elements.')#' => '<$1',
-
+
// Clean up stray non-breaking spaces preceeding block elements
- '#[ ]+<('.$this->block_elements.')#' => ' <$1',
+ '#( \s*)+<('.$this->block_elements.')#' => ' <$2',
// Replace the temporary markers we added earlier
'/\{@TAG\}/' => '<',
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 1ddec54..3b9c73e 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -98,6 +98,7 @@
<li>Fixed a bug with high ascii characters in subject and from email headers.</li>
<li>Fixed a bug in xss_clean() where whitespace following a validated character entity would not be preserved.</li>
<li>Fixed a bug where HTML comments and <pre> tags were being parsed in Typography::auto_typography()</li>
+ <li>Fixed a bug with non-breaking space cleanup in Typography::auto_typography()</li>
</ul>