<?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: JavaScript文档生成工具</title>
	<atom:link href="http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/</link>
	<description>web 标准，前端开发，编程感悟，生活杂想</description>
	<pubDate>Tue, 07 Oct 2008 14:20:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: 小林</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-43431</link>
		<dc:creator>小林</dc:creator>
		<pubDate>Thu, 31 Jan 2008 12:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-43431</guid>
		<description>是啊
这个工具挺不错的
我也使用了</description>
		<content:encoded><![CDATA[<p>是啊<br />
这个工具挺不错的<br />
我也使用了</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jindw</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-32864</link>
		<dc:creator>jindw</dc:creator>
		<pubDate>Sat, 29 Sep 2007 03:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-32864</guid>
		<description>http://www.xidea.org/project/jsi/scripts/org/xidea/jsdoc/index.html
我写的一个。
无需编译。直接在客户端实时解析js源代码。</description>
		<content:encoded><![CDATA[<p><a href="http://www.xidea.org/project/jsi/scripts/org/xidea/jsdoc/index.html" rel="nofollow">http://www.xidea.org/project/jsi/scripts/org/xidea/jsdoc/index.html</a><br />
我写的一个。<br />
无需编译。直接在客户端实时解析js源代码。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rlog</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-31477</link>
		<dc:creator>Rlog</dc:creator>
		<pubDate>Wed, 12 Sep 2007 09:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-31477</guid>
		<description>不是很理解,我刚开始学js. 关注...</description>
		<content:encoded><![CDATA[<p>不是很理解,我刚开始学js. 关注&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aw</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-31150</link>
		<dc:creator>aw</dc:creator>
		<pubDate>Sat, 08 Sep 2007 12:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-31150</guid>
		<description>为什么这段代码:

var module = function(){
  var private;
  return {
  /**
   * 注释
   * @tag
   */
   pub1: function(){},
   pub2: function(){},
   ...
  }
}();
里面会有横线出现？你的Blog的Bug？</description>
		<content:encoded><![CDATA[<p>为什么这段代码:</p>
<p>var module = function(){<br />
  var private;<br />
  return {<br />
  /**<br />
   * 注释<br />
   * @tag<br />
   */<br />
   pub1: function(){},<br />
   pub2: function(){},<br />
   &#8230;<br />
  }<br />
}();<br />
里面会有横线出现？你的Blog的Bug？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: longwosion</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30887</link>
		<dc:creator>longwosion</dc:creator>
		<pubDate>Wed, 05 Sep 2007 08:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30887</guid>
		<description>没有好好看，好象jsDoc toolkit 就是jsdoc2再次改名的项目</description>
		<content:encoded><![CDATA[<p>没有好好看，好象jsDoc toolkit 就是jsdoc2再次改名的项目</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: longwosion</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30886</link>
		<dc:creator>longwosion</dc:creator>
		<pubDate>Wed, 05 Sep 2007 08:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30886</guid>
		<description>最早的时候，在YUI的论坛上就有人问是否用JSDOC的，因为早期生成的文档中有JSDOC的标记。但YUI的开发者说了，是使用了改良版的JSDOC，并且不打算发布。JSDOC是只是使用正则表达式来做文档提取。我在JSDOC的开发论坛上也有人提到var a=function(){}();这样格式的文档的提取，JSDOC的作者也说，暂时不会考虑这样的。所以要支持的话，只能自己Hack了。呵。

似乎JSDOC的新一代版本，改用Javascript而不是Perl来撰写了。起名字叫JSDOC2。这个可能容易hack一些。这个jsdoc2刚刚起步。</description>
		<content:encoded><![CDATA[<p>最早的时候，在YUI的论坛上就有人问是否用JSDOC的，因为早期生成的文档中有JSDOC的标记。但YUI的开发者说了，是使用了改良版的JSDOC，并且不打算发布。JSDOC是只是使用正则表达式来做文档提取。我在JSDOC的开发论坛上也有人提到var a=function(){}();这样格式的文档的提取，JSDOC的作者也说，暂时不会考虑这样的。所以要支持的话，只能自己Hack了。呵。</p>
<p>似乎JSDOC的新一代版本，改用Javascript而不是Perl来撰写了。起名字叫JSDOC2。这个可能容易hack一些。这个jsdoc2刚刚起步。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: etng</title>
		<link>http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30710</link>
		<dc:creator>etng</dc:creator>
		<pubDate>Mon, 03 Sep 2007 00:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/2007/09/02/javascript-documentation-generating-tools/#comment-30710</guid>
		<description>同样的苦恼啊，呵呵。
一方面是从代码中提取注释组成文档这方面难
另方面是在写代码的时候能够智能的添加注释模板也有点。

希望能够研究出成果来，呵呵。</description>
		<content:encoded><![CDATA[<p>同样的苦恼啊，呵呵。<br />
一方面是从代码中提取注释组成文档这方面难<br />
另方面是在写代码的时候能够智能的添加注释模板也有点。</p>
<p>希望能够研究出成果来，呵呵。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
