<?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"
	>
<channel>
	<title>Comments on: putting HTML codes and other special characters into a blog entry</title>
	<atom:link href="http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/feed/" rel="self" type="application/rss+xml" />
	<link>http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/</link>
	<description>Linux, politics, and other interesting things</description>
	<pubDate>Sun, 07 Sep 2008 15:38:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: javascript</title>
		<link>http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-14389</link>
		<dc:creator>javascript</dc:creator>
		<pubDate>Mon, 16 Jun 2008 10:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-14389</guid>
		<description>html special characters -- 
http://html-lesson.blogspot.com/2008/06/special-characters.html</description>
		<content:encoded><![CDATA[<p>html special characters &#8212;<br />
<a href="http://html-lesson.blogspot.com/2008/06/special-characters.html" rel="nofollow">http://html-lesson.blogspot.com/2008/06/special-characters.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: therning.org/ magnus &#187; Blog Archive &#187; Russel: putting HTML/XML in blog entries</title>
		<link>http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1431</link>
		<dc:creator>therning.org/ magnus &#187; Blog Archive &#187; Russel: putting HTML/XML in blog entries</dc:creator>
		<pubDate>Mon, 11 Jun 2007 09:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1431</guid>
		<description>[...] Russel, I&#8217;m glad I&#8217;m using WP&#8217;s markdown plugin. I&#8217;ve never experienced any of the problems you are having relating to &#60;pre&#62; tags or &#60;code&#62;. It just works! [...]</description>
		<content:encoded><![CDATA[<p>[...] Russel, I&#8217;m glad I&#8217;m using WP&#8217;s markdown plugin. I&#8217;ve never experienced any of the problems you are having relating to &lt;pre&gt; tags or &lt;code&gt;. It just works! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien</title>
		<link>http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1395</link>
		<dc:creator>Julien</dc:creator>
		<pubDate>Sun, 10 Jun 2007 07:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1395</guid>
		<description>hmm... the patch is available on http://kirya.net/~julien/wp-syntax.diff as it looks quite strange in my previous comment ;-)</description>
		<content:encoded><![CDATA[<p>hmm&#8230; the patch is available on <a href="http://kirya.net/~julien/wp-syntax.diff" rel="nofollow">http://kirya.net/~julien/wp-syntax.diff</a> as it looks quite strange in my previous comment ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien</title>
		<link>http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1394</link>
		<dc:creator>Julien</dc:creator>
		<pubDate>Sun, 10 Jun 2007 07:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://etbe.coker.com.au/2007/06/10/putting-html-codes-and-other-special-characters-into-a-blog-entry/#comment-1394</guid>
		<description>Hi,

I use wp-syntax plugin on my website for displaying code. and I am very happy with it.
I have applied a small patch to allow use of the &#60;PRE&gth; without specifying language:

--- wp-content/plugins/wp-syntax.php.orig       2007-04-13 21:59:16.000000000 +0200
+++ wp-content/plugins/wp-syntax.php    2007-04-13 21:59:32.000000000 +0200
@@ -100,7 +100,7 @@
 function wp_syntax_before_filter($content)
 {
     return preg_replace_callback(
-        "/\s*(.*)\s*/siU",
+        "/\s*(.*)\s*/siU",
         "wp_syntax_substitute",
         $content
     );


You can see some examples on my website.

Cheers,
Julien</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I use wp-syntax plugin on my website for displaying code. and I am very happy with it.<br />
I have applied a small patch to allow use of the &lt;PRE&gth; without specifying language:</p>
<p>&#8212; wp-content/plugins/wp-syntax.php.orig       2007-04-13 21:59:16.000000000 +0200<br />
+++ wp-content/plugins/wp-syntax.php    2007-04-13 21:59:32.000000000 +0200<br />
@@ -100,7 +100,7 @@<br />
 function wp_syntax_before_filter($content)<br />
 {<br />
     return preg_replace_callback(<br />
-        &#8220;/\s*(.*)\s*/siU&#8221;,<br />
+        &#8220;/\s*(.*)\s*/siU&#8221;,<br />
         &#8220;wp_syntax_substitute&#8221;,<br />
         $content<br />
     );</p>
<p>You can see some examples on my website.</p>
<p>Cheers,<br />
Julien</p>
]]></content:encoded>
	</item>
</channel>
</rss>
