<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EvoTalk &#187; html</title>
	<atom:link href="http://evotalk.net/blog/tag/html/feed" rel="self" type="application/rss+xml" />
	<link>http://evotalk.net/blog</link>
	<description></description>
	<lastBuildDate>Mon, 07 Jun 2010 03:01:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixed Html Table Width</title>
		<link>http://evotalk.net/blog/2009/04/fixed-html-table-width.html</link>
		<comments>http://evotalk.net/blog/2009/04/fixed-html-table-width.html#comments</comments>
		<pubDate>Thu, 02 Apr 2009 08:37:44 +0000</pubDate>
		<dc:creator>asd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://evotalk.net/blog/?p=1221</guid>
		<description><![CDATA[一般是用 width 屬性設定 table 寬度，如 &#60;table width=』750&#8243;&#62;
若在表格裡面顯示一張寬度大於 750 的圖片，表格會被撐大，版面被破壞
可以使用  table-layout 來強制限制寬度 &#60;table style=』table-layout: fixed; width: 750px;』&#62;
參考: Fun with tables
]]></description>
			<content:encoded><![CDATA[<p>一般是用 width 屬性設定 table 寬度，如 &lt;table width=』750&#8243;&gt;<br />
若在表格裡面顯示一張寬度大於 750 的圖片，表格會被撐大，版面被破壞<br />
可以使用  table-layout 來強制限制寬度 &lt;table style=』table-layout: fixed; width: 750px;』&gt;</p>
<p>參考: <a href="http://www.quirksmode.org/css/tables.html" target="_blank">Fun with tables</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evotalk.net/blog/2009/04/fixed-html-table-width.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip Html Tag</title>
		<link>http://evotalk.net/blog/2007/02/strip-html-tag.html</link>
		<comments>http://evotalk.net/blog/2007/02/strip-html-tag.html#comments</comments>
		<pubDate>Tue, 27 Feb 2007 02:41:42 +0000</pubDate>
		<dc:creator>asd</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[程式設計]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://evotalk.net/blog/?p=333</guid>
		<description><![CDATA[節錄至
Thinking in C++, 2nd edition, Volume 2, 4: Strings in Depth
view plain

C++:




string replaceAll&#40;string s, string f, string r&#41; &#123;


unsigned int found = s.find&#40;f&#41;;


while&#40;found != string::npos&#41; &#123;


s.replace&#40;found, f.length&#40;&#41;, r&#41;;


found = s.find&#40;f&#41;;


&#125;


return s;


&#125;


&#160;


string stripHTMLTags&#40;string s&#41; &#123;


while&#40;true&#41; &#123;


unsigned int left = s.find&#40;'&#38;lt;'&#41;;


unsigned int right = s.find&#40;'&#38;gt;'&#41;;


if&#40;left==string::npos &#124;&#124; right==string::npos&#41;


break;


s = s.erase&#40;left, right - left + 1&#41;;


&#125;


s = replaceAll&#40;s, "&#38;lt;", [...]]]></description>
			<content:encoded><![CDATA[<p>節錄至<br />
<a href="http://docs.mandragor.org/files/Programming_languages/Cpp/Thinking_in_Cpp_2nd_edition_vol2_en/html/Chap04.htm">Thinking in C++, 2nd edition, Volume 2, 4: Strings in Depth</a></p>
<div class="igBar"><span id="lcpp-2"><a href="#" onclick="javascript:showCodeTxt('cpp-2'); return false;">view plain</a></span></div>
<div class="shadow">
<div class="syntax_hilite"><span class="langName">C++:</span>
<div id="cpp-2">
<div class="cpp">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">string replaceAll<span style="color: #000000;">&#40;</span>string s, string f, string r<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">unsigned</span> <span style="color: #0000ff;">int</span> found = s.<span style="color: #00eeff;">find</span><span style="color: #000000;">&#40;</span>f<span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">while</span><span style="color: #000000;">&#40;</span>found != string::<span style="color: #00eeff;">npos</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s.<span style="color: #00eeff;">replace</span><span style="color: #000000;">&#40;</span>found, f.<span style="color: #00eeff;">length</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, r<span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">found = s.<span style="color: #00eeff;">find</span><span style="color: #000000;">&#40;</span>f<span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">return</span> s;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">string stripHTMLTags<span style="color: #000000;">&#40;</span>string s<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">while</span><span style="color: #000000;">&#40;</span><span style="color: #0000ff;">true</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">unsigned</span> <span style="color: #0000ff;">int</span> left = s.<span style="color: #00eeff;">find</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">'&amp;lt;'</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">unsigned</span> <span style="color: #0000ff;">int</span> right = s.<span style="color: #00eeff;">find</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">'&amp;gt;'</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">if</span><span style="color: #000000;">&#40;</span>left==string::<span style="color: #00eeff;">npos</span> || right==string::<span style="color: #00eeff;">npos</span><span style="color: #000000;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">break</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s = s.<span style="color: #00eeff;">erase</span><span style="color: #000000;">&#40;</span>left, right - left + <span style="color: #0000dd;color:#800000;">1</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s = replaceAll<span style="color: #000000;">&#40;</span>s, <span style="color: #666666;">"&amp;lt;"</span>, <span style="color: #666666;">"&amp;lt;"</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s = replaceAll<span style="color: #000000;">&#40;</span>s, <span style="color: #666666;">"&amp;gt;"</span>, <span style="color: #666666;">"&amp;gt;"</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s = replaceAll<span style="color: #000000;">&#40;</span>s, <span style="color: #666666;">"&amp;amp;"</span>, <span style="color: #666666;">"&amp;amp;"</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">s = replaceAll<span style="color: #000000;">&#40;</span>s, <span style="color: #666666;">" "</span>, <span style="color: #666666;">" "</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #ff0000;">// Etc...</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0000ff;">return</span> s;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://evotalk.net/blog/2007/02/strip-html-tag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedded Media HTML Generator</title>
		<link>http://evotalk.net/blog/2006/06/embedded-media-html-generator.html</link>
		<comments>http://evotalk.net/blog/2006/06/embedded-media-html-generator.html#comments</comments>
		<pubDate>Wed, 21 Jun 2006 14:12:38 +0000</pubDate>
		<dc:creator>asd</dc:creator>
				<category><![CDATA[科技新知]]></category>
		<category><![CDATA[網站推薦]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://evotalk.net/blog/?p=266</guid>
		<description><![CDATA[Embedded Media HTML Generator
線上產生嵌入瀏覽器的媒體播放器語法，支持 Flash 、QuickTime 、Real Media 、Windows Media 等媒體型態
操作介面

產生語法

嵌入瀏覽器

]]></description>
			<content:encoded><![CDATA[<p><a href="http://cit.ucsf.edu/embedmedia/step1.php">Embedded Media HTML Generator</a></p>
<p id="fp">線上產生嵌入瀏覽器的媒體播放器語法，支持 Flash 、QuickTime 、Real Media 、Windows Media 等媒體型態</p>
<p>操作介面<br />
<img src="http://i69.photobucket.com/albums/i46/asd98537/embed_media.jpg" alt="interface" /></p>
<p>產生語法<br />
<img src="http://i69.photobucket.com/albums/i46/asd98537/syntax.jpg" alt="syntax" /></p>
<p>嵌入瀏覽器<br />
<img src="http://i69.photobucket.com/albums/i46/asd98537/player.jpg" alt="embedded media player" /></p>
]]></content:encoded>
			<wfw:commentRss>http://evotalk.net/blog/2006/06/embedded-media-html-generator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>custom html tag</title>
		<link>http://evotalk.net/blog/2005/12/custom-html-tag.html</link>
		<comments>http://evotalk.net/blog/2005/12/custom-html-tag.html#comments</comments>
		<pubDate>Tue, 06 Dec 2005 17:43:59 +0000</pubDate>
		<dc:creator>asd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[程式設計]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://evotalk.net/blog/?p=104</guid>
		<description><![CDATA[html裡加入自已定義的namespace
[html][/html]
css裡加入
MY\:red { color:#FF0000 }
使用
＜MY:red&#62; aaaa ＜/MY:red&#62;
]]></description>
			<content:encoded><![CDATA[<p>html裡加入自已定義的namespace<br />
[html][/html]<br />
css裡加入</p>
<blockquote><p><span class="red">MY\:red { color:#FF0000 }</span></p></blockquote>
<p>使用</p>
<blockquote><p><span class="red">＜MY:red&gt; aaaa ＜/MY:red&gt;</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://evotalk.net/blog/2005/12/custom-html-tag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>即時新聞Html語法</title>
		<link>http://evotalk.net/blog/2005/12/instant-news-html-syntax.html</link>
		<comments>http://evotalk.net/blog/2005/12/instant-news-html-syntax.html#comments</comments>
		<pubDate>Tue, 06 Dec 2005 17:36:27 +0000</pubDate>
		<dc:creator>asd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[程式設計]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://evotalk.net/blog/?p=103</guid>
		<description><![CDATA[東森新聞

語法
view plain

HTML:




＜img src='http://www.ettoday.com/image/latest.gif'/&#38;gt;


＜iframe frameborder=&#34;3&#34; height=&#34;16&#34; marginheight=&#34;0&#34; marginwidth=&#34;2&#34; name=&#34;ticker&#34; scrolling=&#34;no&#34; width=&#34;99%&#34; src=&#34;http://www.ettoday.com/common/ticker.htm&#34;&#38;gt;


＜/iframe&#38;gt; 







PCHOME
語法
view plain

HTML:




＜iframe marginwidth=0 marginheight=0 src=&#34;http://www.pchome.com.tw/realtimenews/online_news.html&#34; frameborder=0 width=448 scrolling=no height=20 name=&#34;I1&#34; align=&#34;middle&#34;&#38;gt;＜/iframe&#38;gt; 







中國時報
&#60;br /&#62;     width="270" height="100" scrolling="no" frameborder="0"&#60;br /&#62;     marginheight="0" marginwidth="0"&#62;&#60;br /&#62;
語法
view plain

HTML:




＜iframe name=&#34;rtnews&#34; src=&#34;http://news.chinatimes.com.tw/chinatimes/index0513/component/inc-index0513-mainbody01-realtime-content/0,3844,,00.html&#34;


width=&#34;270&#34; height=&#34;100&#34; scrolling=&#34;no&#34; frameborder=&#34;0&#34;


marginheight=&#34;0&#34; marginwidth=&#34;0&#34;&#38;gt;


＜/iframe&#38;gt; 







公益關懷速報

view plain

HTML:




＜img src=&#34;http://www.17885.com.tw/banner/charity.gif&#34; alt=&#34;智邦公益館&#34; width=&#34;57&#34; height=&#34;25&#34; border=&#34;0&#34;&#38;gt;


＜iframe src=&#34;http://www.17885.com.tw/banner/charity.htm&#34; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>東森新聞</strong><br />
<img src="http://www.ettoday.com/image/latest.gif" alt="" /><br />
語法</p>
<div class="igBar"><span id="lhtml-7"><a href="#" onclick="javascript:showCodeTxt('html-7'); return false;">view plain</a></span></div>
<div class="shadow">
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-7">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜img src='http://www.ettoday.com/image/latest.gif'/<span style="color: #ddbb00;">&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜iframe frameborder=&quot;3&quot; height=&quot;16&quot; marginheight=&quot;0&quot; marginwidth=&quot;2&quot; name=&quot;ticker&quot; scrolling=&quot;no&quot; width=&quot;99%&quot; src=&quot;http://www.ettoday.com/common/ticker.htm&quot;<span style="color: #ddbb00;">&amp;gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜/iframe<span style="color: #ddbb00;">&amp;gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<p></p>
<p><strong>PCHOME</strong></p>
<p>語法</p>
<div class="igBar"><span id="lhtml-8"><a href="#" onclick="javascript:showCodeTxt('html-8'); return false;">view plain</a></span></div>
<div class="shadow">
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-8">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜iframe marginwidth=0 marginheight=0 src=&quot;http://www.pchome.com.tw/realtimenews/online_news.html&quot; frameborder=0 width=448 scrolling=no height=20 name=&quot;I1&quot; align=&quot;middle&quot;<span style="color: #ddbb00;">&amp;gt;</span>＜/iframe<span style="color: #ddbb00;">&amp;gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<p></p>
<p><strong>中國時報</strong><br />
&lt;br /&gt;     width="270" height="100" scrolling="no" frameborder="0"&lt;br /&gt;     marginheight="0" marginwidth="0"&gt;&lt;br /&gt;</p>
<p>語法</p>
<div class="igBar"><span id="lhtml-9"><a href="#" onclick="javascript:showCodeTxt('html-9'); return false;">view plain</a></span></div>
<div class="shadow">
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-9">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜iframe name=&quot;rtnews&quot; src=&quot;http://news.chinatimes.com.tw/chinatimes/index0513/component/inc-index0513-mainbody01-realtime-content/0,3844,,00.html&quot;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">width=&quot;270&quot; height=&quot;100&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">marginheight=&quot;0&quot; marginwidth=&quot;0&quot;<span style="color: #ddbb00;">&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜/iframe<span style="color: #ddbb00;">&amp;gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<p></p>
<p><strong>公益關懷速報</strong><br />
<img src="http://www.17885.com.tw/banner/charity.gif" border="0" alt="智邦公益館" width="57" height="25" /></p>
<div class="igBar"><span id="lhtml-10"><a href="#" onclick="javascript:showCodeTxt('html-10'); return false;">view plain</a></span></div>
<div class="shadow">
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-10">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜img src=&quot;http://www.17885.com.tw/banner/charity.gif&quot; alt=&quot;智邦公益館&quot; width=&quot;57&quot; height=&quot;25&quot; border=&quot;0&quot;<span style="color: #ddbb00;">&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">＜iframe src=&quot;http://www.17885.com.tw/banner/charity.htm&quot; width=&quot;93%&quot; height=&quot;18&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot;<span style="color: #ddbb00;">&amp;gt;</span>＜/iframe<span style="color: #ddbb00;">&amp;gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
</div>
<p>
<a href="http://msp.csie.cgu.edu.tw/~asd/tt/down.php?attachname=043556.htm">附檔</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evotalk.net/blog/2005/12/instant-news-html-syntax.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
