further whitespace fixes
diff --git a/user_guide/helpers/form_helper.html b/user_guide/helpers/form_helper.html
index 83b97ab..839f725 100644
--- a/user_guide/helpers/form_helper.html
+++ b/user_guide/helpers/form_helper.html
@@ -258,7 +258,7 @@
 &lt;/fieldset&gt;</code>

 <p>Similar to other functions, you can submit an associative array in the second parameter if you prefer to set additional attributes. </p>

 <p><code>$attributes = array('id' =&gt; 'address_info', 'class' =&gt; 'address_info');<br />

-    echo form_fieldset('Address Information', $attributes);<br />

+	echo form_fieldset('Address Information', $attributes);<br />

 echo &quot;&lt;p&gt;fieldset content here&lt;/p&gt;\n&quot;;<br />

 echo form_fieldset_close(); <br />

 <br />

@@ -269,7 +269,7 @@
 &lt;/fieldset&gt;</code></p>

 <h2>form_fieldset_close()</h2>

 <p>Produces a closing &lt;/fieldset&gt; tag.  The only advantage to using this function is it permits you to pass data to it

-    which will be added below the tag.  For example:</p>

+	which will be added below the tag.  For example:</p>

 <code>$string = &quot;&lt;/div&gt;&lt;/div&gt;&quot;;<br />

 <br />

 echo fieldset_close($string);<br />

@@ -321,7 +321,7 @@
 <br />

 &lt;input type=&quot;submit&quot; name=&quot;mysubmit&quot; value=&quot;Submit Post!&quot; /&gt;</code>

 <p>Similar to other functions, you can submit an associative array in the first parameter if you prefer to set your own attributes.

-    The third parameter lets you add extra data to your form, like JavaScript.</p>

+	The third parameter lets you add extra data to your form, like JavaScript.</p>

 <h2>form_label()</h2>

 <p>Lets you generate a &lt;label&gt;. Simple example:</p>

 <code>echo form_label('What is your Name', 'username');<br />

@@ -329,13 +329,13 @@
 // Would produce:

 <br />

 &lt;label for=&quot;username&quot;&gt;What is your Name&lt;/label&gt;</code>

-<p>Similar to other functions, you can submit an associative array in the third parameter if you prefer to set additional attributes.    </p>

+<p>Similar to other functions, you can submit an associative array in the third parameter if you prefer to set additional attributes.	</p>

 <p><code>$attributes = array(<br />

 &nbsp;&nbsp;&nbsp;&nbsp;'class' =&gt; 'mycustomclass',<br />

 &nbsp;&nbsp;&nbsp;&nbsp;'style' =&gt; 'color: #000;',<br />

 );<br />

-    echo form_label('What is your Name', 'username', $attributes);<br />

-        <br />

+	echo form_label('What is your Name', 'username', $attributes);<br />

+		<br />

 // Would produce: <br />

 &lt;label for=&quot;username&quot; class=&quot;mycustomclass&quot; style=&quot;color: #000;&quot;&gt;What is your Name&lt;/label&gt;</code></p>

 <h2>form_reset()</h2>

diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html
index fcbcccd..6289840 100644
--- a/user_guide/helpers/html_helper.html
+++ b/user_guide/helpers/html_helper.html
@@ -80,7 +80,7 @@
 <p>The above would produce:  &lt;h3>Welcome!&lt;/h3></p>

 <h2>img()</h2>

 <p>Lets you create HTML &lt;img /&gt; tags.  The first parameter  contains the image source. There is data, the

-    second the size of the heading.  Example:</p>

+	second the size of the heading.  Example:</p>

 <code>echo img('images/picture.jpg');<br />

 // gives &lt;img src=&quot;http://site.com/images/picture.jpg&quot; /&gt;</code>

 <p>There is an optional second parameter that is a TRUE/FALSE value that specifics if the src should have the page specified by $config['index_page'] added to the address it creates. Presumably, this would be if you were using a media controller.</p>

@@ -88,17 +88,17 @@
 // gives &lt;img src=&quot;http://site.com/index.php/images/picture.jpg&quot; /&gt;</code></p>

 <p>Additionally, an associative array can be passed to the img() function for complete control over all attributes and values.</p>

 <p><code> $image_properties = array(<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'src' =&gt; 'images/picture.jpg',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'alt' =&gt; 'Me, demonstrating how to eat 4 slices of pizza at one time',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'class' =&gt; 'post_images',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'width' =&gt; '200',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'height' =&gt; '200',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' =&gt; 'That was quite a night',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'rel' =&gt; 'lightbox',<br />

-    );<br />

-    <br />

-    img($image_properties);<br />

-    // &lt;img src=&quot;http://site.com/index.php/images/picture.jpg&quot; alt=&quot;Me, demonstrating how to eat 4 slices of pizza at one time&quot; class=&quot;post_images&quot; width=&quot;200&quot; height=&quot;200&quot; title=&quot;That was quite a night&quot; rel=&quot;lightbox&quot; /&gt;</code></p>

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'src' =&gt; 'images/picture.jpg',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'alt' =&gt; 'Me, demonstrating how to eat 4 slices of pizza at one time',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'class' =&gt; 'post_images',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'width' =&gt; '200',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'height' =&gt; '200',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' =&gt; 'That was quite a night',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'rel' =&gt; 'lightbox',<br />

+	);<br />

+	<br />

+	img($image_properties);<br />

+	// &lt;img src=&quot;http://site.com/index.php/images/picture.jpg&quot; alt=&quot;Me, demonstrating how to eat 4 slices of pizza at one time&quot; class=&quot;post_images&quot; width=&quot;200&quot; height=&quot;200&quot; title=&quot;That was quite a night&quot; rel=&quot;lightbox&quot; /&gt;</code></p>

 <h2>link_tag()</h2>

 <p>Lets you create HTML &lt;link /> tags.  This is useful for stylesheet links, as well as other links. The parameters are href, with optional rel, type, title, media and index_page. index_page is a TRUE/FALSE value that specifics if the href should have the page specified by $config['index_page'] added to the address it creates.<code>

 echo link_tag('css/mystyles.css');<br />

@@ -106,24 +106,24 @@
 <p>Further examples:</p>

 

 <code>

-    echo link_tag('favicon.ico', 'shortcut icon', 'image/ico');<br />

-    // &lt;link href=&quot;http://site.com/favicon.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; /&gt; 

-    <br />

-    <br />

-    echo link('feed', 'alternate', 'application/rss+xml', 'My RSS Feed');<br />

-    // &lt;link href=&quot;http://site.com/feed&quot; rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;My RSS Feed&quot; /&gt; </code>

+	echo link_tag('favicon.ico', 'shortcut icon', 'image/ico');<br />

+	// &lt;link href=&quot;http://site.com/favicon.ico&quot; rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; /&gt; 

+	<br />

+	<br />

+	echo link('feed', 'alternate', 'application/rss+xml', 'My RSS Feed');<br />

+	// &lt;link href=&quot;http://site.com/feed&quot; rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;My RSS Feed&quot; /&gt; </code>

 <p>Additionally, an associative array can be passed to the link() function for complete control over all attributes and values.</p>

 <p><code>

-    $link = array(<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'href' =&gt; 'css/printer.css',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'rel' =&gt; 'stylesheet',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'type' =&gt; 'text/css',<br />

-    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'media' =&gt; 'print'<br />

-    );<br />

-    <br />

-    echo link_tag($link);<br />

-    // &lt;link href=&quot;http://site.com/css/printer.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;</code></p>

-    

+	$link = array(<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'href' =&gt; 'css/printer.css',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'rel' =&gt; 'stylesheet',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'type' =&gt; 'text/css',<br />

+	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'media' =&gt; 'print'<br />

+	);<br />

+	<br />

+	echo link_tag($link);<br />

+	// &lt;link href=&quot;http://site.com/css/printer.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;</code></p>

+	

 <h2>nbs()</h2>

 <p>Generates non-breaking spaces (&amp;nbsp;) based on the number you submit. Example:</p>

 <code>echo nbs(3);</code>

diff --git a/user_guide/helpers/string_helper.html b/user_guide/helpers/string_helper.html
index 025a432..24a0a66 100644
--- a/user_guide/helpers/string_helper.html
+++ b/user_guide/helpers/string_helper.html
@@ -122,8 +122,8 @@
 echo reduce_double_slashes($string); // results in &quot;http://example.com/index.php&quot;</code>

 <h2>trim_slashes()</h2>

 <p>Removes any leading/trailing slashes from a string. Example:<br />

-    <br />

-    <code>$string = &quot;/this/that/theother/&quot;;<br />

+	<br />

+	<code>$string = &quot;/this/that/theother/&quot;;<br />

 echo trim_slashes($string); // results in this/that/theother</code></p>