<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Encode HTML entities in helpers and views in Ruby on Rails</title>
	<atom:link href="http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/</link>
	<description>code + culture</description>
	<lastBuildDate>Fri, 21 Jan 2011 19:11:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Michael Gee</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-565</link>
		<dc:creator>Michael Gee</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-565</guid>
		<description>Joris,

ERB&#039;s html_escape only handles &amp;, &quot;, .

Here&#039;s the source from the link you provide:

# File erb.rb, line 806
    def html_escape(s)
      s.to_s.gsub(/&amp;/, &quot;&amp;&quot;).gsub(/\&quot;/, &quot;&quot;&quot;).gsub(/&gt;/, &quot;&gt;&quot;).gsub(/&lt;/, &quot;&lt;&quot;)
    end</description>
		<content:encoded><![CDATA[<p>Joris,</p>
<p>ERB&#8217;s html_escape only handles &amp;, &#8220;, .</p>
<p>Here&#8217;s the source from the link you provide:</p>
<p># File erb.rb, line 806<br />
    def html_escape(s)<br />
      s.to_s.gsub(/&amp;/, &#8220;&amp;&#8221;).gsub(/\&#8221;/, &#8220;&quot;&#8221;).gsub(/&gt;/, &#8220;&gt;&#8221;).gsub(/&lt;/, &#8220;&lt;&#8221;)<br />
    end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Gee</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-836</link>
		<dc:creator>Michael Gee</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-836</guid>
		<description>Joris,

ERB&#039;s html_escape only handles &amp;, &quot;, .

Here&#039;s the source from the link you provide:

# File erb.rb, line 806
    def html_escape(s)
      s.to_s.gsub(/&amp;/, &quot;&amp;&quot;).gsub(/&quot;/, &quot;&quot;&quot;).gsub(/&gt;/, &quot;&gt;&quot;).gsub(/&lt;/, &quot;&lt;&quot;)
    end</description>
		<content:encoded><![CDATA[<p>Joris,</p>
<p>ERB&#8217;s html_escape only handles &amp;, &#8220;, .</p>
<p>Here&#8217;s the source from the link you provide:</p>
<p># File erb.rb, line 806<br />
    def html_escape(s)<br />
      s.to_s.gsub(/&amp;/, &#8220;&amp;&#8221;).gsub(/&#8221;/, &#8220;&quot;&#8221;).gsub(/&gt;/, &#8220;&gt;&#8221;).gsub(/&lt;/, &#8220;&lt;&#8221;)<br />
    end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joris Machielse</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-430</link>
		<dc:creator>Joris Machielse</dc:creator>
		<pubDate>Wed, 25 Jun 2008 08:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-430</guid>
		<description>Why don&#039;t you just use ERB&#039;s built-in functionality?
&quot;html_escape&quot; or simply &quot;h&quot;

http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658</description>
		<content:encoded><![CDATA[<p>Why don&#8217;t you just use ERB&#8217;s built-in functionality?<br />
&#8220;html_escape&#8221; or simply &#8220;h&#8221;</p>
<p><a href="http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658" rel="nofollow">http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joris Machielse</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-833</link>
		<dc:creator>Joris Machielse</dc:creator>
		<pubDate>Wed, 25 Jun 2008 08:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-833</guid>
		<description>Why don&#039;t you just use ERB&#039;s built-in functionality?
&quot;html_escape&quot; or simply &quot;h&quot;

http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658</description>
		<content:encoded><![CDATA[<p>Why don&#8217;t you just use ERB&#8217;s built-in functionality?<br />
&#8220;html_escape&#8221; or simply &#8220;h&#8221;</p>
<p><a href="http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658" rel="nofollow">http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB/Util.html#M000658</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-356</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Sun, 01 Jun 2008 05:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-356</guid>
		<description>Thanks for the update, I&#039;ll adjust the post accordingly!</description>
		<content:encoded><![CDATA[<p>Thanks for the update, I&#8217;ll adjust the post accordingly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-835</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Sun, 01 Jun 2008 05:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-835</guid>
		<description>Thanks for the update, I&#039;ll adjust the post accordingly!</description>
		<content:encoded><![CDATA[<p>Thanks for the update, I&#8217;ll adjust the post accordingly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tma</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-345</link>
		<dc:creator>tma</dc:creator>
		<pubDate>Fri, 30 May 2008 07:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-345</guid>
		<description>I got the permission to push the plugin on github, so you can use it as git submodule, if you like.

http://github.com/tma/html_helpers</description>
		<content:encoded><![CDATA[<p>I got the permission to push the plugin on github, so you can use it as git submodule, if you like.</p>
<p><a href="http://github.com/tma/html_helpers" rel="nofollow">http://github.com/tma/html_helpers</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tma</title>
		<link>http://jonathanng.com/ruby-on-rails/encode-html-entities-in-helpers-and-views-in-ruby-on-rails/comment-page-1/#comment-834</link>
		<dc:creator>tma</dc:creator>
		<pubDate>Fri, 30 May 2008 07:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linkedin.com/in/jonathansng#comment-834</guid>
		<description>I got the permission to push the plugin on github, so you can use it as git submodule, if you like.

http://github.com/tma/html_helpers</description>
		<content:encoded><![CDATA[<p>I got the permission to push the plugin on github, so you can use it as git submodule, if you like.</p>
<p><a href="http://github.com/tma/html_helpers" rel="nofollow">http://github.com/tma/html_helpers</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

