<?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: Search Engine Keyword Highlight with Javascript</title>
	<atom:link href="http://scott.yang.id.au/code/se-hilite/feed/" rel="self" type="application/rss+xml" />
	<link>http://scott.yang.id.au</link>
	<description>Faith, Technology and Randomness in Life, According to Scott</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:17:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: 也谈Wordpress关键词高亮 &#124; zylinux的blog</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-99954</link>
		<dc:creator>也谈Wordpress关键词高亮 &#124; zylinux的blog</dc:creator>
		<pubDate>Fri, 05 Mar 2010 07:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-99954</guid>
		<description>[...] 1. 在404页面中添加相关文章，这样即使是碰到google来的断链，用户也会找到些有用的东西： &lt;?php if (ls_getinfo(&#039;isref&#039;)) : ?&gt; &lt;h2&gt;&lt;?php ls_getinfo(&#039;terms&#039;); ?&gt;&lt;/h2&gt; &lt;p&gt;欢迎来自 &lt;?php ls_getinfo(&#039;referrer&#039;); ?&gt; 的朋友! 您所找的页面不存在，但是你搜索的关键词：&lt;i&gt;&lt;?php ls_getinfo(&#039;terms&#039;); ?&gt;&lt;/i&gt;. 有以下主题或许您也感兴趣:&lt;/p&gt; &lt;ul&gt; &lt;?php ls_related(5, 10, &#039;&lt;li&gt;&#039;, &#039;&lt;/li&gt;&#039;, &#039;&#039;, &#039;&#039;, false, false); ?&gt; &lt;/ul&gt; &lt;?php endif; ?&gt; 2. 加粗或者高亮关键词： 加粗关键词请参见贝贝博客；如果只需要高亮关键词而不需要欢迎语可以用search_hilite插件。但是这两个方法在使用super  cache时都会出问题，比较好的highlight是纯php方案，如Js的搜索引擎关键字高亮工具Search Engine Keyword Highlight，这方面的wp插件可以用这个wp-hightlight插件。需要注意的是这个插件的最后有个后门钩子，需要去掉，清洁后的版本可以在这里下载关键字高亮工具 [...]</description>
		<content:encoded><![CDATA[<p>[...] 1. 在404页面中添加相关文章，这样即使是碰到google来的断链，用户也会找到些有用的东西： &lt;?php if (ls_getinfo(&#39;isref&#39;)) : ?&gt; &lt;h2&gt;&lt;?php ls_getinfo(&#39;terms&#39;); ?&gt;&lt;/h2&gt; &lt;p&gt;欢迎来自 &lt;?php ls_getinfo(&#39;referrer&#39;); ?&gt; 的朋友! 您所找的页面不存在，但是你搜索的关键词：&lt;i&gt;&lt;?php ls_getinfo(&#39;terms&#39;); ?&gt;&lt;/i&gt;. 有以下主题或许您也感兴趣:&lt;/p&gt; &lt;ul&gt; &lt;?php ls_related(5, 10, &#39;&lt;li&gt;&#39;, &#39;&lt;/li&gt;&#39;, &#39;&#39;, &#39;&#39;, false, false); ?&gt; &lt;/ul&gt; &lt;?php endif; ?&gt; 2. 加粗或者高亮关键词： 加粗关键词请参见贝贝博客；如果只需要高亮关键词而不需要欢迎语可以用search_hilite插件。但是这两个方法在使用super  cache时都会出问题，比较好的highlight是纯php方案，如Js的搜索引擎关键字高亮工具Search Engine Keyword Highlight，这方面的wp插件可以用这个wp-hightlight插件。需要注意的是这个插件的最后有个后门钩子，需要去掉，清洁后的版本可以在这里下载关键字高亮工具 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: China WordPress &#187; Wordpress关键词高亮</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-99209</link>
		<dc:creator>China WordPress &#187; Wordpress关键词高亮</dc:creator>
		<pubDate>Fri, 02 Oct 2009 20:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-99209</guid>
		<description>[...] 增加了上述的function,对内容里面的关键字进行加粗处理 增加了2个filter  add_filter(&#8216;the_content&#8216;, &#8216;ls_terms_filter&#8216;); add_filter(&#8216;comment_text&#8216;, &#8216;ls_terms_filter&#8216;); 如果只需要高亮关键词而不需要欢迎语可以用search_hilite插件。但是这两个方法在使用super  cache时都会出问题，比较好的highlight是纯php方案，如Js的搜索引擎关键字高亮工具Search Engine Keyword Highlight，这方面的wp插件可以用这个wp-hightlight插件。需要注意的是这个插件的最后有个后门钩子，需要去掉. 这个JS之前对中文和百度是不生效的，参照了这篇文章做了修改，现在百度和中文都可以使用了: [...]</description>
		<content:encoded><![CDATA[<p>[...] 增加了上述的function,对内容里面的关键字进行加粗处理 增加了2个filter  add_filter(&#8216;the_content&#8216;, &#8216;ls_terms_filter&#8216;); add_filter(&#8216;comment_text&#8216;, &#8216;ls_terms_filter&#8216;); 如果只需要高亮关键词而不需要欢迎语可以用search_hilite插件。但是这两个方法在使用super  cache时都会出问题，比较好的highlight是纯php方案，如Js的搜索引擎关键字高亮工具Search Engine Keyword Highlight，这方面的wp插件可以用这个wp-hightlight插件。需要注意的是这个插件的最后有个后门钩子，需要去掉. 这个JS之前对中文和百度是不生效的，参照了这篇文章做了修改，现在百度和中文都可以使用了: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How I can highlight keyword search? - Java Programming Forums</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-97459</link>
		<dc:creator>How I can highlight keyword search? - Java Programming Forums</dc:creator>
		<pubDate>Sun, 01 Feb 2009 11:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-97459</guid>
		<description>[...] How I can highlight keyword search?      There is solution by using javascript  I found this one Search Engine Keyword Highlight with Javascript &#124; SYP  but I didn&#039;t know how to use it in [...]</description>
		<content:encoded><![CDATA[<p>[...] How I can highlight keyword search?      There is solution by using javascript  I found this one Search Engine Keyword Highlight with Javascript | SYP  but I didn&#8217;t know how to use it in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Confluence: Engineering Portal</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-93491</link>
		<dc:creator>Confluence: Engineering Portal</dc:creator>
		<pubDate>Tue, 03 Jun 2008 09:26:39 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-93491</guid>
		<description>&lt;strong&gt;Tooltip (jTip)...&lt;/strong&gt;

Introduction Tooltip is for giving users some quick help or explanations for specific keywords. Here is a screen shot  !tooltip1.jpg!  HTML codes can be used for tooltip content, but you should keep it simple.......</description>
		<content:encoded><![CDATA[<p><strong>Tooltip (jTip)&#8230;</strong></p>
<p>Introduction Tooltip is for giving users some quick help or explanations for specific keywords. Here is a screen shot  !tooltip1.jpg!  HTML codes can be used for tooltip content, but you should keep it simple&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 人非章鱼 &#187; 文章 &#187; 高亮搜索关键词的javascript</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-88091</link>
		<dc:creator>人非章鱼 &#187; 文章 &#187; 高亮搜索关键词的javascript</dc:creator>
		<pubDate>Thu, 22 Mar 2007 14:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-88091</guid>
		<description>[...] 做系统的时候需要在搜索结果中高亮关键词，在网上找到一个还不错的Search Engine Keyword Highlight，用于从搜索引擎跳转到页面时高亮关键词，稍微改一下就可以用在本地的搜索了。但是其中有个小bug，当url中不包含查询参数时会陷入死循环。问题主要出在这段代码里。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 做系统的时候需要在搜索结果中高亮关键词，在网上找到一个还不错的Search Engine Keyword Highlight，用于从搜索引擎跳转到页面时高亮关键词，稍微改一下就可以用在本地的搜索了。但是其中有个小bug，当url中不包含查询参数时会陷入死循环。问题主要出在这段代码里。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: midrange.com - In My Humble Opinion &#187; Blog Archive &#187; Updates</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-88054</link>
		<dc:creator>midrange.com - In My Humble Opinion &#187; Blog Archive &#187; Updates</dc:creator>
		<pubDate>Mon, 22 Jan 2007 17:17:37 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-88054</guid>
		<description>[...] If you land on a page in the archives from one of the major search engines, you&#039;ll find the search terms you specified highlighted so they are easier to identify (thanks to a rather cool javascript module I found at http://fucoder.com/code/se-hilite). [...]</description>
		<content:encoded><![CDATA[<p>[...] If you land on a page in the archives from one of the major search engines, you&#8217;ll find the search terms you specified highlighted so they are easier to identify (thanks to a rather cool javascript module I found at <a href="http://fucoder.com/code/se-hilite" rel="nofollow">http://fucoder.com/code/se-hilite</a>). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vibe Technology &#187; VibeTalk &#187; How To: Multi-Purpose WordPress Landing Site</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-88015</link>
		<dc:creator>Vibe Technology &#187; VibeTalk &#187; How To: Multi-Purpose WordPress Landing Site</dc:creator>
		<pubDate>Tue, 10 Oct 2006 08:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-88015</guid>
		<description>[...] se-hilite.js from Scott Yang An excellent bit of javascript that wraps search terms in color highlights. The code uses &lt;div&gt; tags with CSS classes so you easily set colors. [download] [...]</description>
		<content:encoded><![CDATA[<p>[...] se-hilite.js from Scott Yang An excellent bit of javascript that wraps search terms in color highlights. The code uses &lt;div&gt; tags with CSS classes so you easily set colors. [download] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Digesting the internet</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-87876</link>
		<dc:creator>Digesting the internet</dc:creator>
		<pubDate>Sun, 01 Jan 2006 04:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-87876</guid>
		<description>&lt;strong&gt;se_hilite...&lt;/strong&gt;

a hilight script for search words :)

se_hilite_src.js

This one is compressed and has blogsearch added :)

se_hilite.js[/ ......</description>
		<content:encoded><![CDATA[<p><strong>se_hilite&#8230;</strong></p>
<p>a hilight script for search words :)</p>
<p>se_hilite_src.js</p>
<p>This one is compressed and has blogsearch added :)</p>
<p>se_hilite.js[/ &#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: midrange.com - In My Humble Opinion</title>
		<link>http://scott.yang.id.au/code/se-hilite/#comment-87870</link>
		<dc:creator>midrange.com - In My Humble Opinion</dc:creator>
		<pubDate>Wed, 14 Dec 2005 15:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/code/se-hilite/#comment-87870</guid>
		<description>&lt;strong&gt;Updates&lt;/strong&gt;

	Yeah, I know &#8230; this blog isn&#8217;t getting the activity it probably should.
	Problem is, I&#8217;m a technician &#8230; not a writer.  
	However &#8230; it might be worthwhile to take note of some of the recent improvements to midrange.com &amp;#8...</description>
		<content:encoded><![CDATA[<p><strong>Updates</strong></p>
<p>	Yeah, I know &#8230; this blog isn&#8217;t getting the activity it probably should.<br />
	Problem is, I&#8217;m a technician &#8230; not a writer.<br />
	However &#8230; it might be worthwhile to take note of some of the recent improvements to midrange.com &amp;#8&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

