<?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: Code Highlighter Preview</title>
	<atom:link href="http://www.frank-verhoeven.com/code-highlighter-preview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frank-verhoeven.com/code-highlighter-preview/</link>
	<description>Webdevelopment Blog</description>
	<lastBuildDate>Tue, 27 Jul 2010 10:35:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Devendra</title>
		<link>http://www.frank-verhoeven.com/code-highlighter-preview/#comment-27</link>
		<dc:creator>Devendra</dc:creator>
		<pubDate>Sat, 20 Sep 2008 03:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.frank-verhoeven.com/blog/?p=10#comment-27</guid>
		<description>{code type=PHP}
function hello_world(){
echo &quot;Hello World&quot;;
}
{/code}</description>
		<content:encoded><![CDATA[<pre class="php">
<span class="phpFunctionKeyword">function</span> hello_world<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
<span class="phpFunction">echo</span> <span class="phpString">"Hello World"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Verhoeven</title>
		<link>http://www.frank-verhoeven.com/code-highlighter-preview/#comment-13</link>
		<dc:creator>Frank Verhoeven</dc:creator>
		<pubDate>Wed, 17 Sep 2008 14:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.frank-verhoeven.com/blog/?p=10#comment-13</guid>
		<description>Also comments will be automaticaly highlighted:

&lt;h3&gt;CSS Code&lt;/h3&gt;
{code type=css}/* Comment */
@import url(&quot;main.css&quot;);
h2, .head2 {
    font-family: &quot;Sans-Serif&quot;;
    font-weight: bold;
    color: #336699 !important;
}
@media screen, print {
    pre { margin: 0px 10px 10px; }
    h1 { font-size: 14px; padding-top: 10px; }
}
{/code}&lt;!--more--&gt;

&lt;h3&gt;(x)HTML Code&lt;/h3&gt;
{code type=html}
&lt;style&gt; headline {font-size: 24pt;} &lt;/style&gt;
&lt;!-- Comment --&gt;
&lt;td&gt;&lt;p&gt;&lt;a href=&quot;link&quot; rel=&quot;nofollow&quot;&gt;Plain Text  &lt;/a&gt;
&lt;img src=&quot;image&quot; width=&quot;15&quot; /&gt;
&lt;/p&gt;&lt;form action=&quot;action.pl&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Press Me&quot; /&gt;
&lt;/form&gt;Text&lt;/td&gt;
{/code}

&lt;h3&gt;XML Code&lt;/h3&gt;
{code type=xml}
&lt;scheme name=&quot;XML&quot; doctypes=&quot;XML&quot; priority=&quot;50&quot;&gt;
&lt;ignoreCase&gt;Yes&lt;/ignoreCase&gt;
&lt;defaultText MMString:name=&quot;Text/scheme/name&quot; /&gt;
&lt;defaultAttribute name=&quot;Attribute&quot; /&gt;
&lt;/scheme&gt;
{/code}</description>
		<content:encoded><![CDATA[<p>Also comments will be automaticaly highlighted:</p>
<h3>CSS Code</h3>
<pre class="css"><span class="cssComment">/* Comment */</span>
<span class="cssImport">@import url(<span class="cssString">"main.css"</span>);</span>
<span class="cssSelector">h2, .head2 {</span>
    <span class="cssProperty">font-family</span><span class="cssRest">:</span><span class="cssValue"> <span class="cssString">"Sans-Serif"</span></span><span class="cssRest">;</span>
    <span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
    <span class="cssProperty">color</span><span class="cssRest">:</span><span class="cssValue"> #336699 <span class="cssImportant">!important</span></span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssMedia">@media screen, print {</span>
    <span class="cssSelector">pre {</span> <span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0px 10px 10px</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
    <span class="cssSelector">h1 {</span> <span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 14px</span><span class="cssRest">;</span> <span class="cssProperty">padding-top</span><span class="cssRest">:</span><span class="cssValue"> 10px</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssMedia">}</span>
</pre>
<p><!--more--></p>
<h3>(x)HTML Code</h3>
<pre class="html">
<span class="htmlStyleTag">&lt;style&gt;</span> <span class="cssSelector">headline {</span><span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 24pt</span><span class="cssRest">;</span><span class="cssSelector">}</span> <span class="htmlStyleTag">&lt;/style&gt;</span>
<span class="htmlComment"><span class="htmlOtherTag">&lt;!-- Comment --&gt;</span></span>
<span class="htmlTableTag">&lt;td&gt;</span><span class="htmlOtherTag">&lt;p&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;link&quot;</span> rel=<span class="htmlAttributeValue">&quot;nofollow&quot;</span>&gt;</span>Plain Text  <span class="htmlAnchorTag">&lt;/a&gt;</span>
<span class="htmlImageTag">&lt;img src=<span class="htmlAttributeValue">&quot;image&quot;</span> width=<span class="htmlAttributeValue">&quot;15&quot;</span> /&gt;</span>
<span class="htmlOtherTag">&lt;/p&gt;</span><span class="htmlFormTag">&lt;form action=<span class="htmlAttributeValue">&quot;action.pl&quot;</span>&gt;</span>
<span class="htmlFormTag">&lt;input type=<span class="htmlAttributeValue">&quot;submit&quot;</span> value=<span class="htmlAttributeValue">&quot;Press Me&quot;</span> /&gt;</span>
<span class="htmlFormTag">&lt;/form&gt;</span>Text<span class="htmlTableTag">&lt;/td&gt;</span>
</pre>
<h3>XML Code</h3>
<pre class="xml">
<span class="xmlTag">&lt;scheme name=<span class="xmlString">&quot;XML&quot;</span> doctypes=<span class="xmlString">&quot;XML&quot;</span> priority=<span class="xmlString">&quot;50&quot;</span>&gt;</span>
<span class="xmlTag">&lt;ignoreCase&gt;</span><span class="xmlText">Yes</span><span class="xmlTag">&lt;/ignoreCase&gt;</span>
<span class="xmlTag">&lt;defaultText MMString:name=<span class="xmlString">&quot;Text/scheme/name&quot;</span> /&gt;</span>
<span class="xmlTag">&lt;defaultAttribute name=<span class="xmlString">&quot;Attribute&quot;</span> /&gt;</span>
<span class="xmlTag">&lt;/scheme&gt;</span>
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
