<?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>life x web Technology Design &#187; コード</title>
	<atom:link href="http://www.lifexweb.com/tech/tag/%e3%82%b3%e3%83%bc%e3%83%89/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifexweb.com/tech</link>
	<description>コミュニケーションとテクノロジーを考えるブログ</description>
	<lastBuildDate>Fri, 18 Nov 2011 00:59:56 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SyntaxHighlighterを導入してコードをきれいに表示</title>
		<link>http://www.lifexweb.com/tech/2009/03/syntaxhighlighter%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%a6%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e3%81%8d%e3%82%8c%e3%81%84%e3%81%ab%e8%a1%a8%e7%a4%ba/</link>
		<comments>http://www.lifexweb.com/tech/2009/03/syntaxhighlighter%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%a6%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e3%81%8d%e3%82%8c%e3%81%84%e3%81%ab%e8%a1%a8%e7%a4%ba/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 00:53:03 +0000</pubDate>
		<dc:creator>Hideya Kato</dc:creator>
				<category><![CDATA[ツール]]></category>
		<category><![CDATA[プログラミング]]></category>
		<category><![CDATA[コード]]></category>
		<category><![CDATA[テクノロジー]]></category>

		<guid isPermaLink="false">http://www.lifexweb.com/tech/?p=101</guid>
		<description><![CDATA[大きなこと言っておきながらいきなりですが、一応技術系のブログという事でプログラムのコードを載せる際にきれいに表示できるよう、SyntaxHighterを導入してみます。 以下、実際に導入するスクリプト。いかがでしょう？ 横に長いコードだと見づらいですね。改善の余地ありです、、。 *追記(2009/03/23 11:00)：WordPressのテーマ変えたら表示されなくなっちゃいました。現在確認中。 *追記2（2009/03/23 13:30）：ただ単にスクリプトのパスがなかっただけの模様。いちいち入れるのは面倒なのでプラグイン版導入。]]></description>
			<content:encoded><![CDATA[<p>
大きなこと言っておきながらいきなりですが、一応技術系のブログという事でプログラムのコードを載せる際にきれいに表示できるよう、SyntaxHighterを導入してみます。<br />
<br />
以下、実際に導入するスクリプト。いかがでしょう？<br />
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shCore.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushCss.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushJScript.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushPerl.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushPhp.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushPlain.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushRuby.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushSql.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/shBrushXml.js&quot;&gt;&lt;/script&gt;
&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/styles/shCore.css&quot;/&gt;
&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/styles/shThemeDefault.css&quot;/&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
SyntaxHighlighter.config.clipboardSwf = 'http://www.lifexweb.com/tech/wp-content/themes/syntaxhighlighter/scripts/clipboard.swf';
SyntaxHighlighter.all();
&lt;/script&gt;
</pre>
<br />
横に長いコードだと見づらいですね。改善の余地ありです、、。<br />
<br />
*追記(2009/03/23 11:00)：WordPressのテーマ変えたら表示されなくなっちゃいました。現在確認中。<br />
*追記2（2009/03/23 13:30）：ただ単にスクリプトのパスがなかっただけの模様。いちいち入れるのは面倒なのでプラグイン版導入。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lifexweb.com/tech/2009/03/syntaxhighlighter%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%a6%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e3%81%8d%e3%82%8c%e3%81%84%e3%81%ab%e8%a1%a8%e7%a4%ba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

