<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.pythonclub.org/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel>
        <title>Python俱乐部</title>
        <description></description>
        <link>http://www.pythonclub.org/</link>
        <lastBuildDate>Wed, 17 Mar 2010 19:20:09 -0700</lastBuildDate>
        <generator>FeedCreator 1.7.2-ppt DokuWiki</generator>
        <image>
            <url>http://www.pythonclub.org/lib/images/favicon.ico</url>
            <title>Python俱乐部</title>
            <link>http://www.pythonclub.org/</link>
        </image>
        <item>
            <title>实时股票数据 （股票分析软件之本源） - old revision restored</title>
            <link>http://www.pythonclub.org/misc/stock-data</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;实时股票数据_股票分析软件之本源&quot; id=&quot;实时股票数据_股票分析软件之本源&quot;&gt;实时股票数据 （股票分析软件之本源）&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;实时股票数据 （股票分析软件之本源）&quot; [1-68] --&gt;
&lt;h2&gt;&lt;a name=&quot;什么是股票数据&quot; id=&quot;什么是股票数据&quot;&gt;什么是股票数据&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
股票数据是指的股票开盘价，股票最高价，股票最低价，股票成交金额等等的一些和股票交易相关的数据。
&lt;/p&gt;

&lt;p&gt;
如果我们有这些股票数据的话，就可以通过建立股票模型来实现使用程序来分析股票行情，这也就一般股票分析软件的运行工作原理。
&lt;/p&gt;

&lt;p&gt;
可以看到股票分析软件的”原料”是股票数据，如果能得到实时的股票数据，就能使用软件来对股票进行分析。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;什么是股票数据&quot; [69-569] --&gt;
&lt;h2&gt;&lt;a name=&quot;如何得到实时股票数据&quot; id=&quot;如何得到实时股票数据&quot;&gt;如何得到实时股票数据&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

新浪网财经频道会有实时的股票数据显示，通过分析我们可以知道新浪财经使用的下面的&lt;a href=&quot;http://www.pythonclub.org/misc/javascript&quot; class=&quot;wikilink2&quot; title=&quot;misc:javascript&quot; rel=&quot;nofollow&quot;&gt;JavaScript&lt;/a&gt; API接口来得到实时股票数据的。
以大秦铁路（股票代码：601006）为例，如果要获取它的最新行情，只需访问新浪的股票数据
接口：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
http://hq.sinajs.cn/list=sh601006
&lt;/pre&gt;

&lt;p&gt;
这个股票数据接口会返回一串文本，如下：
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
var hq_str_sh601006=&amp;quot;大秦铁路, 27.55, 27.25, 26.91, 27.55, 26.20, 26.91, 
26.92, 22114263, 589824680, 4695, 26.91, 57590, 26.90, 14700, 26.89, 14300,
26.88, 15100, 26.87, 3100, 26.92, 8900, 26.93, 14230, 26.94, 25150, 26.95, 
15220, 26.96, 2008-01-11, 15:05:32&amp;quot;;
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;如何得到实时股票数据&quot; [570-1307] --&gt;
&lt;h2&gt;&lt;a name=&quot;股票数据分析&quot; id=&quot;股票数据分析&quot;&gt;股票数据分析&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

有了上面的这些股票数据，我们怎么来呢分析他呢？
&lt;/p&gt;

&lt;p&gt;
其实上面的每一个数据都代表了一个股票数据，具体股票数据的含义如下：
&lt;/p&gt;
&lt;pre class=&quot;file&quot;&gt;
0: &amp;quot;大秦铁路&amp;quot;，股票名字；
1: &amp;quot;27.55&amp;quot;，今日开盘价；
2: &amp;quot;27.25&amp;quot;，昨日收盘价；
3: &amp;quot;26.91&amp;quot;，当前价格；
4: &amp;quot;27.55&amp;quot;，今日最高价；
5: &amp;quot;26.20&amp;quot;，今日最低价；
6: &amp;quot;26.91&amp;quot;，竞买价，即“买一”报价；
7: &amp;quot;26.92&amp;quot;，竞卖价，即“卖一”报价；
8: &amp;quot;22114263&amp;quot;，成交的股票数，由于股票交易以一百股为基本单位，
               所以在使用时，通常把该值除以一百；
9: &amp;quot;589824680&amp;quot;，成交金额，单位为“元”，为了一目了然，
                通常以“万元”为成交金额的单位，
                所以通常把该值除以一万；
10: &amp;quot;4695&amp;quot;，“买一”申请4695股，即47手；
11: &amp;quot;26.91&amp;quot;，“买一”报价；
12: &amp;quot;57590&amp;quot;，“买二”
13: &amp;quot;26.90&amp;quot;，“买二”
14: &amp;quot;14700&amp;quot;，“买三”
15: &amp;quot;26.89&amp;quot;，“买三”
16: &amp;quot;14300&amp;quot;，“买四”
17: &amp;quot;26.88&amp;quot;，“买四”
18: &amp;quot;15100&amp;quot;，“买五”
19: &amp;quot;26.87&amp;quot;，“买五”
20: &amp;quot;3100&amp;quot;，“卖一”申报3100股，即31手；
21: &amp;quot;26.92&amp;quot;，“卖一”报价
(22, 23), (24, 25), (26,27), (28, 29)分别为“卖二”至“卖四的情况”
30: &amp;quot;2008-01-11&amp;quot;，日期；
31: &amp;quot;15:05:32&amp;quot;，时间；
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;股票数据分析&quot; [1308-2696] --&gt;
&lt;h2&gt;&lt;a name=&quot;javascript进行股票分析实例&quot; id=&quot;javascript进行股票分析实例&quot;&gt;JavaScript进行股票分析实例&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
一个简单的用&lt;a href=&quot;http://www.pythonclub.org/misc/javascript&quot; class=&quot;wikilink2&quot; title=&quot;misc:javascript&quot; rel=&quot;nofollow&quot;&gt;JavaScript&lt;/a&gt;对上述股票数据进行股票分析应用例子: 
&lt;/p&gt;
&lt;pre class=&quot;code javascript&quot;&gt;&lt;span class=&quot;sy0&quot;&gt;&amp;lt;&lt;/span&gt;script type=&lt;span class=&quot;st0&quot;&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt; 
   src=&lt;span class=&quot;st0&quot;&gt;&amp;quot;http://hq.sinajs.cn/list=sh601006&amp;quot;&lt;/span&gt; charset=&lt;span class=&quot;st0&quot;&gt;&amp;quot;gb2312&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;script&lt;span class=&quot;sy0&quot;&gt;&amp;gt;&lt;/span&gt;
&lt;span class=&quot;sy0&quot;&gt;&amp;lt;&lt;/span&gt;script type=&lt;span class=&quot;st0&quot;&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;&amp;gt;&lt;/span&gt;
     &lt;span class=&quot;kw2&quot;&gt;var&lt;/span&gt; elements=hq_str_sh601006.&lt;span class=&quot;me1&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&amp;quot;,&amp;quot;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;;
    document.&lt;span class=&quot;kw1&quot;&gt;write&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&amp;quot;current price:&amp;quot;&lt;/span&gt;+elements&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;;
&lt;span class=&quot;sy0&quot;&gt;&amp;lt;/&lt;/span&gt;script&lt;span class=&quot;sy0&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;

这段代码输出大秦铁路（股票代码：601006）的当前股价

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
current price:14.20
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;JavaScript进行股票分析实例&quot; [2697-3200] --&gt;
&lt;h2&gt;&lt;a name=&quot;同时得到多个股票数据&quot; id=&quot;同时得到多个股票数据&quot;&gt;同时得到多个股票数据&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
如果你要同时查询多个股票，那么在URL最后加上一个逗号，再加上股票代码就可以了；比如你要一次查询大秦铁路（601006）和大同煤业（601001）的行情，就这样使用URL：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
http://hq.sinajs.cn/list=sh601003,sh601001
&lt;/pre&gt;

&lt;p&gt;

得到的股票数据如下：

&lt;/p&gt;
&lt;pre class=&quot;code javascript&quot;&gt;&lt;span class=&quot;kw2&quot;&gt;var&lt;/span&gt; hq_str_sh601003=&lt;span class=&quot;st0&quot;&gt;&amp;quot;柳钢股份,9.30,9.51,9.32,9.60,9.17,9.32,9.33,
23586489,221150256,23331,9.32,77800,9.31,246400,9.30,136880,9.29,
150000,9.28,37120,9.33,26600,9.34,69140,9.35,7180,9.36,6900,9.37,
2009-07-17,15:03:32&amp;quot;&lt;/span&gt;;
&amp;nbsp;
&lt;span class=&quot;kw2&quot;&gt;var&lt;/span&gt; hq_str_sh601001=&lt;span class=&quot;st0&quot;&gt;&amp;quot;大同煤业,40.90,41.08,42.84,42.93,40.62,42.83,
42.84,16000498,672773993,1100,42.83,4000,42.81,25400,42.80,1300,
42.78,4500,42.77,500,42.84,21710,42.85,36000,42.86,2400,42.87,30860,42.88,
2009-07-17,15:03:32&amp;quot;&lt;/span&gt;;&lt;/pre&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;同时得到多个股票数据&quot; [3201-4040] --&gt;
&lt;h2&gt;&lt;a name=&quot;查询大盘指数&quot; id=&quot;查询大盘指数&quot;&gt;查询大盘指数&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
 
查询大盘指数，比如查询上证综合指数（000001）：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
http://hq.sinajs.cn/list=s_sh000001
&lt;/pre&gt;

&lt;p&gt;

服务器返回的数据为：
&lt;/p&gt;
&lt;pre class=&quot;code javascript&quot;&gt;&lt;span class=&quot;kw2&quot;&gt;var&lt;/span&gt; hq_str_s_sh000001=&lt;span class=&quot;st0&quot;&gt;&amp;quot;上证指数,3094.668,-128.073,-3.97,436653,5458126&amp;quot;&lt;/span&gt;;&lt;/pre&gt;
&lt;p&gt;
数据含义分别为：指数名称，当前点数，当前价格，涨跌率，成交量（手），成交额（万元）；
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;查询大盘指数&quot; [4041-4455] --&gt;
&lt;h2&gt;&lt;a name=&quot;查询深圳成指数&quot; id=&quot;查询深圳成指数&quot;&gt;查询深圳成指数&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
 
查询深圳成指数使用的是下面的API

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
http://hq.sinajs.cn/list=s_sz399001
&lt;/pre&gt;

&lt;p&gt;
得到的股票数据为：

&lt;/p&gt;
&lt;pre class=&quot;code javascript&quot;&gt;&lt;span class=&quot;kw2&quot;&gt;var&lt;/span&gt; hq_str_s_sz399001=&lt;span class=&quot;st0&quot;&gt;&amp;quot;深证成指,13131.972,50.082,0.38,11653715,2101747&amp;quot;&lt;/span&gt;;&lt;/pre&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;查询深圳成指数&quot; [4456-4721] --&gt;
&lt;h2&gt;&lt;a name=&quot;股票k线图数据&quot; id=&quot;股票k线图数据&quot;&gt;股票K线图数据&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
 
对于股票的K线图，日线图等的获取可以通过请求 http://image.sinajs.cn/…./…/*.gif  此URL获取，其中*代表股票代码，详见如下：
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;股票K线图数据&quot; [4722-4923] --&gt;
&lt;h3&gt;&lt;a name=&quot;股票分时线的查询&quot; id=&quot;股票分时线的查询&quot;&gt;股票分时线的查询&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;http://image.sinajs.cn/newchart/min/n/sh000001.gif&lt;/pre&gt;

&lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fmin%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; title=&quot;http://image.sinajs.cn/newchart/min/n/sh000001.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=&amp;amp;h=&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fmin%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;股票分时线的查询&quot; [4924-5069] --&gt;
&lt;h3&gt;&lt;a name=&quot;查看股票日k线图&quot; id=&quot;查看股票日k线图&quot;&gt;查看股票日K线图&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;http://image.sinajs.cn/newchart/daily/n/sh000001.gif&lt;/pre&gt;

&lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fdaily%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; title=&quot;http://image.sinajs.cn/newchart/daily/n/sh000001.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=&amp;amp;h=&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fdaily%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;查看股票日K线图&quot; [5070-5218] --&gt;
&lt;h3&gt;&lt;a name=&quot;周k线查询&quot; id=&quot;周k线查询&quot;&gt;周K线查询&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;http://image.sinajs.cn/newchart/weekly/n/sh000001.gif&lt;/pre&gt;

&lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fweekly%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; title=&quot;http://image.sinajs.cn/newchart/weekly/n/sh000001.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=&amp;amp;h=&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fweekly%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;周K线查询&quot; [5219-5358] --&gt;
&lt;h3&gt;&lt;a name=&quot;月k线查询&quot; id=&quot;月k线查询&quot;&gt;月K线查询&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;http://image.sinajs.cn/newchart/monthly/n/sh000001.gif&lt;/pre&gt;

&lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fmonthly%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; title=&quot;http://image.sinajs.cn/newchart/monthly/n/sh000001.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=&amp;amp;h=&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fimage.sinajs.cn%2Fnewchart%2Fmonthly%2Fn%2Fsh000001.gif&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;月K线查询&quot; [5359-] --&gt;</description>
            <author>admin</author>
        <category>misc</category>
            <pubDate>Wed, 17 Mar 2010 18:29:07 -0700</pubDate>
        </item>
        <item>
            <title>Python俱乐部</title>
            <link>http://www.pythonclub.org/sidebar</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;python俱乐部&quot; id=&quot;python俱乐部&quot;&gt;Python俱乐部&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python俱乐部&quot; [1-31] --&gt;
&lt;h2&gt;&lt;a name=&quot;python&quot; id=&quot;python&quot;&gt;Python&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/start&quot; class=&quot;wikilink1&quot; title=&quot;start&quot;&gt;PythonClub 首页&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-basic/start&quot; class=&quot;wikilink1&quot; title=&quot;python-basic:start&quot;&gt;Python 基础&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/start&quot; class=&quot;wikilink1&quot; title=&quot;python-files:start&quot;&gt;Python 常见文件操作&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/start&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:start&quot;&gt;Python 网络编程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-hacks/start&quot; class=&quot;wikilink1&quot; title=&quot;python-hacks:start&quot;&gt;Python 小技巧&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-news/start&quot; class=&quot;wikilink1&quot; title=&quot;python-news:start&quot;&gt;Python 趣闻&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-class/start&quot; class=&quot;wikilink1&quot; title=&quot;python-class:start&quot;&gt;Python 类&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python&quot; [32-360] --&gt;
&lt;h2&gt;&lt;a name=&quot;关于本站&quot; id=&quot;关于本站&quot;&gt;关于本站&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/about&quot; class=&quot;wikilink1&quot; title=&quot;about&quot;&gt;关于Python俱乐部&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/wiki/syntax&quot; class=&quot;wikilink1&quot; title=&quot;wiki:syntax&quot;&gt;编辑器使用方法&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;关于本站&quot; [361-447] --&gt;
&lt;h2&gt;&lt;a name=&quot;链接&quot; id=&quot;链接&quot;&gt;链接&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.truevue.org/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.truevue.org/&quot;  rel=&quot;nofollow&quot;&gt;我的博客&lt;/a&gt;
 
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;链接&quot; [448-] --&gt;</description>
            <author>admin</author>
            <pubDate>Wed, 17 Mar 2010 18:27:42 -0700</pubDate>
        </item>
        <item>
            <title>Python 电子书/教程下载</title>
            <link>http://www.pythonclub.org/python-books/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;python_电子书教程下载&quot; id=&quot;python_电子书教程下载&quot;&gt;Python 电子书/教程下载&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python 电子书/教程下载&quot; [1-45] --&gt;
&lt;h2&gt;&lt;a name=&quot;python_入门书籍&quot; id=&quot;python_入门书籍&quot;&gt;Python 入门书籍&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python 入门书籍&quot; [46-78] --&gt;
&lt;h3&gt;&lt;a name=&quot;dive_into_python&quot; id=&quot;dive_into_python&quot;&gt;Dive Into Python&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

经典入门书籍，我就是靠这本书入门的。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 英文主页：&lt;a href=&quot;http://diveintopython.org/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://diveintopython.org/&quot;  rel=&quot;nofollow&quot;&gt;http://diveintopython.org/&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 中文主页：&lt;a href=&quot;http://www.woodpecker.org.cn/diveintopython/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.woodpecker.org.cn/diveintopython/&quot;  rel=&quot;nofollow&quot;&gt;http://www.woodpecker.org.cn/diveintopython/&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Dive Into Python&quot; [79-272] --&gt;
&lt;h2&gt;&lt;a name=&quot;python_进阶书籍&quot; id=&quot;python_进阶书籍&quot;&gt;Python 进阶书籍&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python 进阶书籍&quot; [273-304] --&gt;
&lt;h3&gt;&lt;a name=&quot;python核心编程_中文第二版&quot; id=&quot;python核心编程_中文第二版&quot;&gt;Python核心编程(中文第二版)&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 当当网链接：&lt;a href=&quot;http://union.dangdang.com/transfer/transfer.aspx?from=362-A100059869synspslib%7C21112020900067%5E20100221110017-90441%7C99999%7C01%7C&amp;amp;backurl=http%3A%2F%2Fproduct.dangdang.com%2Fproduct.aspx%3Fproduct_id%3D20255354&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://union.dangdang.com/transfer/transfer.aspx?from=362-A100059869synspslib%7C21112020900067%5E20100221110017-90441%7C99999%7C01%7C&amp;amp;backurl=http%3A%2F%2Fproduct.dangdang.com%2Fproduct.aspx%3Fproduct_id%3D20255354&quot;  rel=&quot;nofollow&quot;&gt;Python核心编程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 电子书下载地址：&lt;a href=&quot;http://docs.google.com/fileview?id=0B5fW5R-EcQGFNzI4OGQyNDItNjlkYi00NzAxLTg1OGQtZDAyNTg0M2YwYWI1&amp;amp;hl=zh_CN&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://docs.google.com/fileview?id=0B5fW5R-EcQGFNzI4OGQyNDItNjlkYi00NzAxLTg1OGQtZDAyNTg0M2YwYWI1&amp;amp;hl=zh_CN&quot;  rel=&quot;nofollow&quot;&gt;Python核心编程(Google 文档)&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python核心编程(中文第二版)&quot; [305-] --&gt;</description>
            <author>admin</author>
        <category>python-books</category>
            <pubDate>Wed, 17 Mar 2010 18:26:27 -0700</pubDate>
        </item>
        <item>
            <title>乱七八糟的收集 - old revision restored</title>
            <link>http://www.pythonclub.org/misc/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;乱七八糟的收集&quot; id=&quot;乱七八糟的收集&quot;&gt;乱七八糟的收集&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/badminton/start&quot; class=&quot;wikilink1&quot; title=&quot;misc:badminton:start&quot;&gt;羽毛球运动&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/badminton-place&quot; class=&quot;wikilink1&quot; title=&quot;misc:badminton-place&quot;&gt;上海羽毛球场地&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/looknstop&quot; class=&quot;wikilink1&quot; title=&quot;misc:looknstop&quot;&gt;look n stop&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/trados-tutorial&quot; class=&quot;wikilink1&quot; title=&quot;misc:trados-tutorial&quot;&gt;Trados 简明教程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/%E4%B8%AD%E6%96%87url%E5%9C%B0%E5%9D%80%E7%9A%84%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E%E4%BC%98%E5%8C%96&quot; class=&quot;wikilink1&quot; title=&quot;misc:中文url地址的搜索引擎优化&quot;&gt;中文url的搜索引擎优化&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/%E6%88%91%E7%9C%8B%E8%BF%87%E7%9A%84%E5%B0%8F%E8%AF%B4&quot; class=&quot;wikilink1&quot; title=&quot;misc:我看过的小说&quot;&gt;我看过的小说&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/stock-data&quot; class=&quot;wikilink1&quot; title=&quot;misc:stock-data&quot;&gt;实时股票数据&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/punctuation&quot; class=&quot;wikilink1&quot; title=&quot;misc:punctuation&quot;&gt;标点符号的中英文对照&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;乱七八糟的收集&quot; [1-409] --&gt;
&lt;h2&gt;&lt;a name=&quot;synopsys&quot; id=&quot;synopsys&quot;&gt;Synopsys&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/launch&quot; class=&quot;wikilink1&quot; title=&quot;misc:launch&quot;&gt;Synopsys 午餐&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/misc/synopsys/mbti&quot; class=&quot;wikilink1&quot; title=&quot;misc:synopsys:mbti&quot;&gt;Myers-Briggs Type Indicator&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://securintranet.synopsys.com/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://securintranet.synopsys.com/&quot;  rel=&quot;nofollow&quot;&gt;Secure Intranet, when VPN dies&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Synopsys&quot; [410-555] --&gt;
&lt;h2&gt;&lt;a name=&quot;颛桥&quot; id=&quot;颛桥&quot;&gt;颛桥&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
2009年3月，在上海颛桥镇&lt;a href=&quot;http://www.pythonclub.org/zhuanqiao/riyuehuating&quot; class=&quot;wikilink1&quot; title=&quot;zhuanqiao:riyuehuating&quot;&gt;日月华庭&lt;/a&gt;买了个二手房。
&lt;/p&gt;

&lt;p&gt;
2009年5月，经过简单的装修，我搬进了新家。
&lt;/p&gt;

&lt;p&gt;
下面是收集的与颛桥有关的信息：

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/zhuanqiao/emart-free-bus&quot; class=&quot;wikilink1&quot; title=&quot;zhuanqiao:emart-free-bus&quot;&gt;易买得银都路店 颛桥方向免费班车时刻表&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/zhuanqiao/carrefour-free-bus&quot; class=&quot;wikilink1&quot; title=&quot;zhuanqiao:carrefour-free-bus&quot;&gt;家乐福莘庄店颛桥方向免费班车时刻表&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/zhuanqiao/laolinju&quot; class=&quot;wikilink1&quot; title=&quot;zhuanqiao:laolinju&quot;&gt;颛桥老邻居饭香&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;颛桥&quot; [556-875] --&gt;
&lt;h2&gt;&lt;a name=&quot;网络收集&quot; id=&quot;网络收集&quot;&gt;网络收集&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/web/start&quot; class=&quot;wikilink2&quot; title=&quot;web:start&quot; rel=&quot;nofollow&quot;&gt;start&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/web/google-wap-converter&quot; class=&quot;wikilink1&quot; title=&quot;web:google-wap-converter&quot;&gt;Google Wap 转换器&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;网络收集&quot; [876-] --&gt;</description>
            <author>admin</author>
        <category>misc</category>
            <pubDate>Wed, 17 Mar 2010 18:24:32 -0700</pubDate>
        </item>
        <item>
            <title>Python 常见文件操作 - old revision restored</title>
            <link>http://www.pythonclub.org/python-files/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;python_常见文件操作&quot; id=&quot;python_常见文件操作&quot;&gt;Python 常见文件操作&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/file-basic&quot; class=&quot;wikilink1&quot; title=&quot;python-files:file-basic&quot;&gt;Python 文件处理基础&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/ini&quot; class=&quot;wikilink1&quot; title=&quot;python-files:ini&quot;&gt; ini 文件处理&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/html&quot; class=&quot;wikilink1&quot; title=&quot;python-files:html&quot;&gt; html 文件处理&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/xml&quot; class=&quot;wikilink1&quot; title=&quot;python-files:xml&quot;&gt; xml 文件处理&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/csv&quot; class=&quot;wikilink1&quot; title=&quot;python-files:csv&quot;&gt; CSV文件读写&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/excel&quot; class=&quot;wikilink1&quot; title=&quot;python-files:excel&quot;&gt;excel文件读写&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/word&quot; class=&quot;wikilink1&quot; title=&quot;python-files:word&quot;&gt; word 文件读写&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/sqlite&quot; class=&quot;wikilink1&quot; title=&quot;python-files:sqlite&quot;&gt;sqlite 数据库操作&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/py2exe&quot; class=&quot;wikilink1&quot; title=&quot;python-files:py2exe&quot;&gt; py2exe 创建可执行文件&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <author>admin</author>
        <category>python-files</category>
            <pubDate>Wed, 17 Mar 2010 18:21:38 -0700</pubDate>
        </item>
        <item>
            <title>Python 网络编程 - old revision restored</title>
            <link>http://www.pythonclub.org/python-network-application/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;python_网络编程&quot; id=&quot;python_网络编程&quot;&gt;Python 网络编程&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/cgi&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:cgi&quot;&gt;CGI 编程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/email-format&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:email-format&quot;&gt;MIME文件格式&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/pop3&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:pop3&quot;&gt;使用POP3收邮件&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/smtp&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:smtp&quot;&gt;使用SMTP发邮件&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/http-protocol&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:http-protocol&quot;&gt;HTTP协议精解&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/pycurl&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:pycurl&quot;&gt;使用pycurl进行http，ftp编程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/urlencode&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:urlencode&quot;&gt;python urlencode编码&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <author>admin</author>
        <category>python-network-application</category>
            <pubDate>Wed, 17 Mar 2010 18:17:22 -0700</pubDate>
        </item>
        <item>
            <title>Python 俱乐部 PythonClub.org</title>
            <link>http://www.pythonclub.org/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;python_俱乐部_pythonclub.org&quot; id=&quot;python_俱乐部_pythonclub.org&quot;&gt;Python 俱乐部 PythonClub.org&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-basic/start&quot; class=&quot;wikilink1&quot; title=&quot;python-basic:start&quot;&gt;Python基本语法&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-class/start&quot; class=&quot;wikilink1&quot; title=&quot;python-class:start&quot;&gt;Python的类&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-files/start&quot; class=&quot;wikilink1&quot; title=&quot;python-files:start&quot;&gt;Python文件处理&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-network-application/start&quot; class=&quot;wikilink1&quot; title=&quot;python-network-application:start&quot;&gt;Python网络编程&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/modules/start&quot; class=&quot;wikilink1&quot; title=&quot;modules:start&quot;&gt;Python 第三方模块&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/algorithm/start&quot; class=&quot;wikilink1&quot; title=&quot;algorithm:start&quot;&gt;常见算法的Python实现&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-hacks/start&quot; class=&quot;wikilink1&quot; title=&quot;python-hacks:start&quot;&gt;Python Hacks&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-news/start&quot; class=&quot;wikilink1&quot; title=&quot;python-news:start&quot;&gt;Python 新闻&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-scripts/start&quot; class=&quot;wikilink1&quot; title=&quot;python-scripts:start&quot;&gt;Python 小应用&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/python-books/start&quot; class=&quot;wikilink1&quot; title=&quot;python-books:start&quot;&gt;Python 电子书/教程下载&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python 俱乐部 PythonClub.org&quot; [1-490] --&gt;
&lt;h2&gt;&lt;a name=&quot;python俱乐部开放咯&quot; id=&quot;python俱乐部开放咯&quot;&gt;Python俱乐部开放咯&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
Python俱乐部开放编辑权限咯，Python俱乐部一直以提供Python知识目标，原创并收集了Python编程相关的知识。
&lt;/p&gt;

&lt;p&gt;
为了更好的发挥Python俱乐部网站的作用，Python俱乐部正式开放编辑权限，你无需注册，就可以直接编辑任何页面。
&lt;/p&gt;

&lt;p&gt;
请参考 &lt;a href=&quot;http://www.pythonclub.org/wiki/syntax&quot; class=&quot;wikilink1&quot; title=&quot;wiki:syntax&quot;&gt;编辑器格式&lt;/a&gt; 来使你编辑的页面能更好的呈现给大家，你只要花1分钟就能掌握基本的格式。

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 如果你有更好的方法，希望能能够和我们分享&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 如果你看到好的文章，希望你能够将其和我们分享&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 如果你有问题，你也可以通过&lt;a href=&quot;http://www.pythonclub.org/question&quot; class=&quot;wikilink1&quot; title=&quot;question&quot;&gt;我有问题&lt;/a&gt;给我们提问，我相信大家会给你很多提示&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;

我们的口号：&lt;strong&gt;让更多人用 Python&lt;/strong&gt;  

&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Python俱乐部开放咯&quot; [491-] --&gt;</description>
            <author>admin</author>
            <pubDate>Wed, 17 Mar 2010 18:17:06 -0700</pubDate>
        </item>
        <item>
            <title>如何删除dokuwiki生成的文件</title>
            <link>http://www.pythonclub.org/dokuwiki/delete-dokuwiki-generated-file</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;如何删除dokuwiki生成的文件&quot; id=&quot;如何删除dokuwiki生成的文件&quot;&gt;如何删除dokuwiki生成的文件&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;

dokuwiki会生成很多文件，包括meta，cache文件等等，当你想删除这些文件的时候，你会发现你没有写权限。
&lt;/p&gt;

&lt;p&gt;
这是由于dokuwiki生成的文件是Linux/Unix系统给Apache的权限，可能会和你的FTP权限不一样，这时候你就不能删除dokuwiki生成的文件了。
&lt;/p&gt;

&lt;p&gt;
下面的php文件可以将这个php文件所在目录下所有的文件，文件夹的权限改为777，这样你就可以通过FTP来删除Dokuwiki所生成的文件
&lt;/p&gt;

&lt;p&gt;

&lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_exclaim.gif&quot; class=&quot;middle&quot; alt=&quot;:!:&quot; /&gt; 当且仅当你明白下面文件内容时才使用这个文件！

&lt;/p&gt;
&lt;pre class=&quot;code php&quot;&gt;&lt;span class=&quot;kw2&quot;&gt;&amp;lt;?php&lt;/span&gt;
&lt;span class=&quot;coMULTI&quot;&gt;/**
 * When you call this file it will make all files and directories
 * in it's own directory and all directories below writable by
 * everyone
 *
 * You can use this to (re)gain control on files owned by the
 * apache process.
 *
 * Only use it if you really know that this is what you want.
 * Delete the file immediately after using it!
 */&lt;/span&gt;
&amp;nbsp;
&lt;a href=&quot;http://www.php.net/header&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;header&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&amp;quot;Content-Type: text/plain&amp;quot;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&amp;nbsp;
&lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;starting...&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&lt;a href=&quot;http://www.php.net/flush&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;flush&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
traverse&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.php.net/dirname&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;dirname&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;kw2&quot;&gt;__FILE__&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;finished...&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;kw2&quot;&gt;function&lt;/span&gt; traverse&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dh&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;=&lt;/span&gt; &lt;a href=&quot;http://www.php.net/opendir&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;opendir&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
        &lt;span class=&quot;kw1&quot;&gt;while&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;=&lt;/span&gt; &lt;a href=&quot;http://www.php.net/readdir&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;readdir&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dh&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;!==&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
            &lt;span class=&quot;co1&quot;&gt;//skip hidden files and upper dirs&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.php.net/preg_match&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;preg_match&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'/^[&lt;span class=&quot;es0&quot;&gt;\.&lt;/span&gt;_]/'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;continue&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.php.net/is_dir&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;is_dir&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'/'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
                &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;@&lt;/span&gt;&lt;a href=&quot;http://www.php.net/chmod&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;chmod&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'/'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;0777&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
                    &lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;chmod 0777 $dir/$file OK&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
                &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;&lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
                    &lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;chmod 0777 $dir/$file FAILED&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
                &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
                &lt;a href=&quot;http://www.php.net/flush&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;flush&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
                traverse&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'/'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
                &lt;span class=&quot;kw1&quot;&gt;continue&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
            &lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;@&lt;/span&gt;&lt;a href=&quot;http://www.php.net/chmod&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;chmod&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dir&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'/'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$file&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;0666&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
                &lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;chmod 0666 $dir/$file OK&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;&lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
                &lt;a href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;chmod 0666 $dir/$file FAILED&lt;span class=&quot;es0&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
            &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
            &lt;a href=&quot;http://www.php.net/flush&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;flush&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
       &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
       &lt;a href=&quot;http://www.php.net/closedir&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;closedir&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;re1&quot;&gt;$dh&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
   &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
</description>
            <author>admin</author>
        <category>dokuwiki</category>
            <pubDate>Wed, 17 Mar 2010 09:46:30 -0700</pubDate>
        </item>
        <item>
            <title>我有问题 - 创建</title>
            <link>http://www.pythonclub.org/question</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;我有问题&quot; id=&quot;我有问题&quot;&gt;我有问题&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 你可以在下面直接留下你的问题&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <pubDate>Wed, 17 Mar 2010 07:49:11 -0700</pubDate>
        </item>
        <item>
            <title>Formatting Syntax - 创建</title>
            <link>http://www.pythonclub.org/wiki/syntax-en</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;formatting_syntax&quot; id=&quot;formatting_syntax&quot;&gt;Formatting Syntax&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the &lt;em&gt;Edit this page&lt;/em&gt; button at the top or bottom of the page. If you want to try something, just use the &lt;a href=&quot;http://www.pythonclub.org/playground/playground&quot; class=&quot;wikilink1&quot; title=&quot;playground:playground&quot;&gt;playground&lt;/a&gt; page. The simpler markup is easily accessible via &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aquickbuttons&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aquickbuttons&quot;&gt;quickbuttons&lt;/a&gt;, too.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Formatting Syntax&quot; [1-528] --&gt;
&lt;h2&gt;&lt;a name=&quot;basic_text_formatting&quot; id=&quot;basic_text_formatting&quot;&gt;Basic text formatting&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; supports &lt;strong&gt;bold&lt;/strong&gt;, &lt;em&gt;italic&lt;/em&gt;, &lt;em class=&quot;u&quot;&gt;underlined&lt;/em&gt; and &lt;code&gt;monospaced&lt;/code&gt; texts. Of course you can &lt;strong&gt;&lt;em class=&quot;u&quot;&gt;&lt;em&gt;&lt;code&gt;combine&lt;/code&gt;&lt;/em&gt;&lt;/em&gt;&lt;/strong&gt; all these.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki supports **bold**, //italic//, __underlined__ and &amp;#039;&amp;#039;monospaced&amp;#039;&amp;#039; texts.
Of course you can **__//&amp;#039;&amp;#039;combine&amp;#039;&amp;#039;//__** all these.&lt;/pre&gt;

&lt;p&gt;

You can use &lt;sub&gt;subscript&lt;/sub&gt; and &lt;sup&gt;superscript&lt;/sup&gt;, too.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;You can use &amp;lt;sub&amp;gt;subscript&amp;lt;/sub&amp;gt; and &amp;lt;sup&amp;gt;superscript&amp;lt;/sup&amp;gt;, too.&lt;/pre&gt;

&lt;p&gt;

You can mark something as &lt;del&gt;deleted&lt;/del&gt; as well.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;You can mark something as &amp;lt;del&amp;gt;deleted&amp;lt;/del&amp;gt; as well.&lt;/pre&gt;

&lt;p&gt;

&lt;strong&gt;Paragraphs&lt;/strong&gt; are created from blank lines. If you want to &lt;strong&gt;force a newline&lt;/strong&gt; without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
&lt;/p&gt;

&lt;p&gt;
This is some text with some linebreaks&lt;br/&gt;
 Note that the
two backslashes are only recognized at the end of a line&lt;br/&gt;

or followed by&lt;br/&gt;
 a whitespace \\this happens without it.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;This is some text with some linebreaks\\ Note that the
two backslashes are only recognized at the end of a line\\
or followed by\\ a whitespace \\this happens without it.&lt;/pre&gt;

&lt;p&gt;

You should use forced newlines only if really needed.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Basic text formatting&quot; [529-1665] --&gt;
&lt;h2&gt;&lt;a name=&quot;links&quot; id=&quot;links&quot;&gt;Links&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; supports multiple ways of creating links.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Links&quot; [1666-1736] --&gt;
&lt;h3&gt;&lt;a name=&quot;external&quot; id=&quot;external&quot;&gt;External&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

External links are recognized automagically: &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;http://www.google.com&lt;/a&gt; or simply &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;www.google.com&lt;/a&gt; - You can set Linknames, too: &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;This Link points to google&lt;/a&gt;. Email addresses like this one: &lt;a href=&quot;mailto:&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot; class=&quot;mail JSnocheck&quot; title=&quot;&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot;&gt;&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&lt;/a&gt; are recognized, too.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki supports multiple ways of creating links. External links are recognized
automagically: http://www.google.com or simply www.google.com - You can set
Linknames, too: [[http://www.google.com|This Link points to google]]. Email
addresses like this one: &amp;lt;andi@splitbrain.org&amp;gt; are recognized, too.&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;External&quot; [1737-2317] --&gt;
&lt;h3&gt;&lt;a name=&quot;internal&quot; id=&quot;internal&quot;&gt;Internal&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

Internal links are created by using square brackets. You can either just give a &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot;&gt;wiki:pagename&lt;/a&gt; or use an additional &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot;&gt;Title Text&lt;/a&gt;. Wiki pagenames are converted to lowercase automatically, special characters are not allowed. 

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;Internal links are created by using square brackets. You can either just give
a [[pagename]] or use an additional [[pagename|Title Text]]. Wiki pagenames
are converted to lowercase automatically, special chars are not allowed.&lt;/pre&gt;

&lt;p&gt;

You can use &lt;a href=&quot;http://www.pythonclub.org/wiki/namespaces&quot; class=&quot;wikilink2&quot; title=&quot;wiki:namespaces&quot; rel=&quot;nofollow&quot;&gt;namespaces&lt;/a&gt; by using a colon in the pagename.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;You can use [[wiki:namespaces]] by using a colon in the pagename.&lt;/pre&gt;

&lt;p&gt;

For details about namespaces see &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Anamespaces&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Anamespaces&quot;&gt;wiki:namespaces&lt;/a&gt;.
&lt;/p&gt;

&lt;p&gt;
Linking to a specific section is possible, too. Just add the section name behind a hash character as known from &lt;acronym title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/acronym&gt;. This links to &lt;a href=&quot;http://www.pythonclub.org/wiki/syntax#internal&quot; class=&quot;wikilink1&quot; title=&quot;wiki:syntax&quot;&gt;this Section&lt;/a&gt;.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;This links to [[syntax#internal|this Section]].&lt;/pre&gt;

&lt;p&gt;

Notes:

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Links to &lt;a href=&quot;http://www.pythonclub.org/wiki/syntax&quot; class=&quot;wikilink1&quot; title=&quot;wiki:syntax&quot;&gt;existing pages&lt;/a&gt; are shown in a different style from &lt;a href=&quot;http://www.pythonclub.org/wiki/nonexisting&quot; class=&quot;wikilink2&quot; title=&quot;wiki:nonexisting&quot; rel=&quot;nofollow&quot;&gt;nonexisting&lt;/a&gt; ones.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; does not use &lt;a href=&quot;http://en.wikipedia.org/wiki/CamelCase&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/CamelCase&quot;&gt;CamelCase&lt;/a&gt; to automatically create links by default, but this behaviour can be enabled in the &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aconfig&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aconfig&quot;&gt;wiki:config&lt;/a&gt; file. Hint: If &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; is a link, then it&amp;#039;s enabled.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; When a section&amp;#039;s heading is changed, its bookmark changes, too. So don&amp;#039;t rely on section linking too much.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Internal&quot; [2318-3667] --&gt;
&lt;h3&gt;&lt;a name=&quot;interwiki&quot; id=&quot;interwiki&quot;&gt;Interwiki&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; supports &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Ainterwiki&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Ainterwiki&quot;&gt;Interwiki&lt;/a&gt; links. These are quick links to other Wikis. For example this is a link to Wikipedia&amp;#039;s page about Wikis: &lt;a href=&quot;http://en.wikipedia.org/wiki/Wiki&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/Wiki&quot;&gt;Wiki&lt;/a&gt;.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki supports [[doku&amp;gt;wiki:interwiki|Interwiki]] links. These are quick links to other Wikis.
For example this is a link to Wikipedia&amp;#039;s page about Wikis: [[wp&amp;gt;Wiki]].&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Interwiki&quot; [3668-4035] --&gt;
&lt;h3&gt;&lt;a name=&quot;windows_shares&quot; id=&quot;windows_shares&quot;&gt;Windows Shares&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

Windows shares like &lt;a href=&quot;file://///server/share&quot; class=&quot;windows&quot; title=&quot;\\server\share&quot; onclick=&quot;if(document.all == null){alert('连接到 Windows 共享功能只有在 IE 浏览器中才能正常使用。\n但您仍能复制并粘贴该链接。');}&quot; onkeypress=&quot;if(document.all == null){alert('连接到 Windows 共享功能只有在 IE 浏览器中才能正常使用。\n但您仍能复制并粘贴该链接。');}&quot;&gt;this&lt;/a&gt; are recognized, too. Please note that these only make sense in a homogenous user group like a corporate &lt;a href=&quot;http://en.wikipedia.org/wiki/Intranet&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/Intranet&quot;&gt;Intranet&lt;/a&gt;.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;Windows Shares like [[\\server\share|this]] are recognized, too.&lt;/pre&gt;

&lt;p&gt;

Notes:

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the “local zone”).&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; For Mozilla and Firefox it can be enabled through the config option &lt;a href=&quot;http://www.mozilla.org/quality/networking/docs/netprefs.html#file&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.mozilla.org/quality/networking/docs/netprefs.html#file&quot;  rel=&quot;nofollow&quot;&gt;security.checkloaduri&lt;/a&gt; but this is not recommended.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; See &lt;a href=&quot;http://bugs.splitbrain.org/index.php?do=details&amp;amp;task_id=151&quot; class=&quot;interwiki iw_dokubug&quot; title=&quot;http://bugs.splitbrain.org/index.php?do=details&amp;amp;task_id=151&quot;&gt;151&lt;/a&gt; for more info.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Windows Shares&quot; [4036-4681] --&gt;
&lt;h3&gt;&lt;a name=&quot;image_links&quot; id=&quot;image_links&quot;&gt;Image Links&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

You can also use an image to link to another internal or external page by combining the syntax for links and &lt;a href=&quot;#images_and_other_files&quot; title=&quot;wiki:syntax-en &amp;crarr;&quot; class=&quot;wikilink1&quot;&gt;images&lt;/a&gt; (see below) like this:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;[[http://www.php.net|{{wiki:dokuwiki-128.png}}]]&lt;/pre&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.php.net&quot; class=&quot;media&quot; target=&quot;_blank&quot; title=&quot;http://www.php.net&quot;  rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Please note: The image formatting is the only formatting syntax accepted in link names.
&lt;/p&gt;

&lt;p&gt;
The whole &lt;a href=&quot;#images_and_other_files&quot; title=&quot;wiki:syntax-en &amp;crarr;&quot; class=&quot;wikilink1&quot;&gt;image&lt;/a&gt; and &lt;a href=&quot;#links&quot; title=&quot;wiki:syntax-en &amp;crarr;&quot; class=&quot;wikilink1&quot;&gt;link&lt;/a&gt; syntax is supported (including image resizing, internal and external images and URLs and interwiki links).
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Image Links&quot; [4682-5235] --&gt;
&lt;h2&gt;&lt;a name=&quot;footnotes&quot; id=&quot;footnotes&quot;&gt;Footnotes&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

You can add footnotes &lt;sup&gt;&lt;a href=&quot;#fn__1&quot; name=&quot;fnt__1&quot; id=&quot;fnt__1&quot; class=&quot;fn_top&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt; by using double parentheses.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;You can add footnotes ((This is a footnote)) by using double parentheses.&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Footnotes&quot; [5236-5410] --&gt;
&lt;h2&gt;&lt;a name=&quot;sectioning&quot; id=&quot;sectioning&quot;&gt;Sectioning&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically – this can be disabled by including the string &lt;code&gt;~~NOTOC~~&lt;/code&gt; in the document.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Sectioning&quot; [5411-5697] --&gt;
&lt;h3&gt;&lt;a name=&quot;headline_level_3&quot; id=&quot;headline_level_3&quot;&gt;Headline Level 3&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;/div&gt;

&lt;h4&gt;&lt;a name=&quot;headline_level_4&quot; id=&quot;headline_level_4&quot;&gt;Headline Level 4&lt;/a&gt;&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;/div&gt;

&lt;h5&gt;&lt;a name=&quot;headline_level_5&quot; id=&quot;headline_level_5&quot;&gt;Headline Level 5&lt;/a&gt;&lt;/h5&gt;
&lt;div class=&quot;level5&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;==== Headline Level 3 ====
=== Headline Level 4 ===
== Headline Level 5 ==&lt;/pre&gt;

&lt;p&gt;

By using four or more dashes, you can make a horizontal line:

&lt;/p&gt;
&lt;hr /&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Headline Level 3&quot; [5698-5924] --&gt;
&lt;h2&gt;&lt;a name=&quot;images_and_other_files&quot; id=&quot;images_and_other_files&quot;&gt;Images and other files&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

You can include external and internal &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aimages&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aimages&quot;&gt;wiki:images&lt;/a&gt; with curly brackets. Optionally you can specify the size of them.
&lt;/p&gt;

&lt;p&gt;
Real size:                        &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Resize to given width:            &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=50&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Resize to given width and height: &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=200&amp;amp;h=50&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Resized external image:           &lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fde3.php.net%2Fimages%2Fphp.gif&quot; class=&quot;media&quot; title=&quot;http://de3.php.net/images/php.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=200&amp;amp;h=50&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fde3.php.net%2Fimages%2Fphp.gif&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;Real size:                        {{wiki:dokuwiki-128.png}}
Resize to given width:            {{wiki:dokuwiki-128.png?50}}
Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}}
Resized external image:           {{http://de3.php.net/images/php.gif?200x50}}&lt;/pre&gt;

&lt;p&gt;
By using left or right whitespaces you can choose the alignment.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediaright&quot; align=&quot;right&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;medialeft&quot; align=&quot;left&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediacenter&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;{{ wiki:dokuwiki-128.png}}
{{wiki:dokuwiki-128.png }}
{{ wiki:dokuwiki-128.png }}&lt;/pre&gt;

&lt;p&gt;

Of course, you can add a title (displayed as a tooltip by most browsers), too.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax-en&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediacenter&quot; title=&quot;This is the caption&quot; alt=&quot;This is the caption&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;{{ wiki:dokuwiki-128.png |This is the caption}}&lt;/pre&gt;

&lt;p&gt;

If you specify a filename (external or internal) that is not an image (&lt;code&gt;gif, jpeg, png&lt;/code&gt;), then it will be displayed as a link instead.
&lt;/p&gt;

&lt;p&gt;
For linking an image to another page see &lt;a href=&quot;#image_links&quot; title=&quot;wiki:syntax-en &amp;crarr;&quot; class=&quot;wikilink1&quot;&gt;Image Links&lt;/a&gt; above.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Images and other files&quot; [5925-7262] --&gt;
&lt;h2&gt;&lt;a name=&quot;lists&quot; id=&quot;lists&quot;&gt;Lists&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a &lt;code&gt;*&lt;/code&gt; for unordered lists or a &lt;code&gt;-&lt;/code&gt; for ordered ones.

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; This is a list&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; The second item&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; You may have different levels&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Another item&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; The same list but ordered&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Another item&lt;/div&gt;
&lt;ol&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; Just use indention for deeper levels&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; That&amp;#039;s it&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;code&quot;&gt;
  * This is a list
  * The second item
    * You may have different levels
  * Another item

  - The same list but ordered
  - Another item
    - Just use indention for deeper levels
  - That&amp;#039;s it
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Lists&quot; [7263-7859] --&gt;
&lt;h2&gt;&lt;a name=&quot;smileys&quot; id=&quot;smileys&quot;&gt;Smileys&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; converts commonly used &lt;a href=&quot;http://en.wikipedia.org/wiki/emoticon&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/emoticon&quot;&gt;emoticon&lt;/a&gt;s to their graphical equivalents. More smileys can be placed in the &lt;code&gt;smiley&lt;/code&gt; directory and configured in the &lt;code&gt;conf/smileys.conf&lt;/code&gt; file. Here is an overview of Smileys included in &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;.

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_cool.gif&quot; class=&quot;middle&quot; alt=&quot;8-)&quot; /&gt;   8-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_eek.gif&quot; class=&quot;middle&quot; alt=&quot;8-O&quot; /&gt;   8-O  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_sad.gif&quot; class=&quot;middle&quot; alt=&quot;:-(&quot; /&gt;   :-(  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_smile.gif&quot; class=&quot;middle&quot; alt=&quot;:-)&quot; /&gt;   :-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_smile2.gif&quot; class=&quot;middle&quot; alt=&quot;=)&quot; /&gt;    =)   &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_doubt.gif&quot; class=&quot;middle&quot; alt=&quot;:-/&quot; /&gt;   :-/  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_doubt2.gif&quot; class=&quot;middle&quot; alt=&quot;:-\&quot; /&gt;   :-\  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_confused.gif&quot; class=&quot;middle&quot; alt=&quot;:-?&quot; /&gt;   :-?  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_biggrin.gif&quot; class=&quot;middle&quot; alt=&quot;:-D&quot; /&gt;   :-D  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_razz.gif&quot; class=&quot;middle&quot; alt=&quot;:-P&quot; /&gt;   :-P  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_surprised.gif&quot; class=&quot;middle&quot; alt=&quot;:-O&quot; /&gt;   :-O  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_silenced.gif&quot; class=&quot;middle&quot; alt=&quot;:-X&quot; /&gt;   :-X  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_neutral.gif&quot; class=&quot;middle&quot; alt=&quot;:-|&quot; /&gt;   :-|  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_wink.gif&quot; class=&quot;middle&quot; alt=&quot;;-)&quot; /&gt;   ;-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_fun.gif&quot; class=&quot;middle&quot; alt=&quot;^_^&quot; /&gt;   ^_^  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_question.gif&quot; class=&quot;middle&quot; alt=&quot;:?:&quot; /&gt;   :?:  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_exclaim.gif&quot; class=&quot;middle&quot; alt=&quot;:!:&quot; /&gt;   :!:  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_lol.gif&quot; class=&quot;middle&quot; alt=&quot;LOL&quot; /&gt;   LOL  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/fixme.gif&quot; class=&quot;middle&quot; alt=&quot;FIXME&quot; /&gt;   FIXME &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/delete.gif&quot; class=&quot;middle&quot; alt=&quot;DELETEME&quot; /&gt;  DELETEME &lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Smileys&quot; [7860-8532] --&gt;
&lt;h2&gt;&lt;a name=&quot;typography&quot; id=&quot;typography&quot;&gt;Typography&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; can convert simple text characters to their typographically correct entities. Here is an example of recognized characters.
&lt;/p&gt;

&lt;p&gt;
→ ← ↔ ⇒ ⇐ ⇔ » « – — 640&amp;times;480 © ™ ®
“He thought &amp;#039;It&amp;#039;s a man&amp;#039;s world&amp;#039;…”
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
-&amp;gt; &amp;lt;- &amp;lt;-&amp;gt; =&amp;gt; &amp;lt;= &amp;lt;=&amp;gt; &amp;gt;&amp;gt; &amp;lt;&amp;lt; -- --- 640x480 (c) (tm) (r)
&amp;quot;He thought &amp;#039;It&amp;#039;s a man&amp;#039;s world&amp;#039;...&amp;quot;
&lt;/pre&gt;

&lt;p&gt;
Please note: These conversions can be turned off through a &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aconfig%23typography&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aconfig%23typography&quot;&gt;config option&lt;/a&gt; and a &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aentities&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aentities&quot;&gt;pattern file&lt;/a&gt;.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Typography&quot; [8533-9041] --&gt;
&lt;h2&gt;&lt;a name=&quot;quoting&quot; id=&quot;quoting&quot;&gt;Quoting&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

Some times you want to mark some text to show it&amp;#039;s a reply or comment. You can use the following syntax:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;I think we should do it

&amp;gt; No we shouldn&amp;#039;t

&amp;gt;&amp;gt; Well, I say we should

&amp;gt; Really?

&amp;gt;&amp;gt; Yes!

&amp;gt;&amp;gt;&amp;gt; Then lets do it!&lt;/pre&gt;

&lt;p&gt;

I think we should do it

&lt;/p&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
 No we shouldn&amp;#039;t&lt;/div&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
 Well, I say we should&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
 Really?&lt;/div&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
 Yes!&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
&lt;blockquote&gt;&lt;div class=&quot;no&quot;&gt;
 Then lets do it!&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;/blockquote&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Quoting&quot; [9042-9414] --&gt;
&lt;h2&gt;&lt;a name=&quot;tables&quot; id=&quot;tables&quot;&gt;Tables&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; supports a simple syntax to create tables. 

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; Heading 1      &lt;/th&gt;&lt;th class=&quot;col1 leftalign&quot;&gt; Heading 2       &lt;/th&gt;&lt;th class=&quot;col2 leftalign&quot;&gt; Heading 3          &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; Row 1 Col 1    &lt;/td&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; Row 1 Col 2     &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; Row 1 Col 3        &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; Row 2 Col 1    &lt;/td&gt;&lt;td class=&quot;col1&quot; colspan=&quot;2&quot;&gt; some colspan (note the double pipe) &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; Row 3 Col 1    &lt;/td&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; Row 2 Col 2     &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; Row 2 Col 3        &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

Table rows have to start and end with a &lt;code&gt;|&lt;/code&gt; for normal rows or a &lt;code&gt;^&lt;/code&gt; for headers.

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;^ Heading 1      ^ Heading 2       ^ Heading 3          ^
| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        |
| Row 2 Col 1    | some colspan (note the double pipe) ||
| Row 3 Col 1    | Row 2 Col 2     | Row 2 Col 3        |&lt;/pre&gt;

&lt;p&gt;

To connect cells horizontally, just make the next cell completely empty as shown above. Be sure to have always the same amount of cell separators!
&lt;/p&gt;

&lt;p&gt;
Vertical tableheaders are possible, too.

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;td class=&quot;col0 rightalign&quot;&gt;              &lt;/td&gt;&lt;th class=&quot;col1 leftalign&quot;&gt; Heading 1            &lt;/th&gt;&lt;th class=&quot;col2 leftalign&quot;&gt; Heading 2          &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; Heading 3    &lt;/th&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; Row 1 Col 2          &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; Row 1 Col 3        &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; Heading 4    &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; no colspan this time &lt;/td&gt;&lt;td class=&quot;col2 rightalign&quot;&gt;                    &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; Heading 5    &lt;/th&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; Row 2 Col 2          &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; Row 2 Col 3        &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

As you can see, it&amp;#039;s the cell separator before a cell which decides about the formatting:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;|              ^ Heading 1            ^ Heading 2          ^
^ Heading 3    | Row 1 Col 2          | Row 1 Col 3        |
^ Heading 4    | no colspan this time |                    |
^ Heading 5    | Row 2 Col 2          | Row 2 Col 3        |&lt;/pre&gt;

&lt;p&gt;

Note: Vertical spans (rowspan) are not possible.
&lt;/p&gt;

&lt;p&gt;
You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text.

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0 centeralign&quot; colspan=&quot;3&quot;&gt;           Table with alignment           &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0 rightalign&quot;&gt;         right&lt;/td&gt;&lt;td class=&quot;col1 centeralign&quot;&gt;    center    &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt;left          &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt;left          &lt;/td&gt;&lt;td class=&quot;col1 rightalign&quot;&gt;         right&lt;/td&gt;&lt;td class=&quot;col2 centeralign&quot;&gt;    center    &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

This is how it looks in the source:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;^           Table with alignment           ^^^
|         right|    center    |left          |
|left          |         right|    center    |
| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Tables&quot; [9415-11546] --&gt;
&lt;h2&gt;&lt;a name=&quot;non-parsed_blocks&quot; id=&quot;non-parsed_blocks&quot;&gt;Non-parsed Blocks&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

You can include non-parsed blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags &lt;code&gt;code&lt;/code&gt; or &lt;code&gt;file&lt;/code&gt;.
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
This is preformatted code all spaces are preserved: like              &amp;lt;-this
&lt;/pre&gt;
&lt;pre class=&quot;file&quot;&gt;
This is pretty much the same, but you could use it to show that you quoted a file.  
&lt;/pre&gt;

&lt;p&gt;
To let the parser ignore an area completely (ie. do no formatting on it), enclose the area either with &lt;code&gt;nowiki&lt;/code&gt; tags or even simpler, with double percent signs &lt;code&gt;%%&lt;/code&gt;.
&lt;/p&gt;

&lt;p&gt;

This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it.

&lt;/p&gt;

&lt;p&gt;
See the source of this page to see how to use these blocks.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Non-parsed Blocks&quot; [11547-12353] --&gt;
&lt;h2&gt;&lt;a name=&quot;syntax_highlighting&quot; id=&quot;syntax_highlighting&quot;&gt;Syntax Highlighting&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; can highlight sourcecode, which makes it easier to read. It uses the &lt;a href=&quot;http://qbnz.com/highlighter/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://qbnz.com/highlighter/&quot;  rel=&quot;nofollow&quot;&gt;GeSHi&lt;/a&gt; Generic Syntax Highlighter – so any language supported by &lt;a href=&quot;http://www.pythonclub.org/wiki/geshi&quot; class=&quot;wikilink2&quot; title=&quot;wiki:geshi&quot; rel=&quot;nofollow&quot;&gt;GeSHi&lt;/a&gt; is supported. The syntax is the same like in the code block in the previous section, but this time the name of the used language is inserted inside the tag. Eg. &lt;code&gt;&amp;lt;code java&amp;gt;&lt;/code&gt;.
&lt;/p&gt;
&lt;pre class=&quot;code java&quot;&gt;&lt;span class=&quot;coMULTI&quot;&gt;/** 
 * The HelloWorldApp class implements an application that
 * simply displays &amp;quot;Hello World!&amp;quot; to the standard output.
 */&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;class&lt;/span&gt; HelloWorldApp &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span class=&quot;kw2&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; main&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;q=allinurl%3AString+java.sun.com&amp;amp;btnI=I%27m%20Feeling%20Lucky&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;String&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; args&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
        &lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;q=allinurl%3ASystem+java.sun.com&amp;amp;btnI=I%27m%20Feeling%20Lucky&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;System&lt;/span&gt;&lt;/a&gt;.&lt;span class=&quot;me1&quot;&gt;out&lt;/span&gt;.&lt;span class=&quot;me1&quot;&gt;println&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&amp;quot;Hello World!&amp;quot;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;//Display the string.&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
The following language strings are currently recognized: &lt;em&gt;actionscript-french, actionscript, ada, apache, applescript, asm, asp, autoit, bash, blitzbasic, bnf, caddcl, cadlisp, cfdg, cfm, c_mac, c, cpp, cpp-qt, csharp, css, delphi, diff, div, dos, d, eiffel, fortran, freebasic, gml, groovy, html, idl, ini, inno, io, java5, java, javascript, latex, lisp, lua, matlab, mirc, mpasm, mysql, nsis, objc, ocaml-brief, ocaml, oobas, oracle8, pascal, perl, php-brief, php, plsql, python, qbasic, rails, reg, robots, ruby, sas, scheme, sdlbasic, smalltalk, smarty, sql, tcl, text, thinbasic, tsql, vbnet, vb, vhdl, visualfoxpro, winbatch, xml, xpp, z80&lt;/em&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Syntax Highlighting&quot; [12354-13706] --&gt;
&lt;h2&gt;&lt;a name=&quot;rssatom_feed_aggregation&quot; id=&quot;rssatom_feed_aggregation&quot;&gt;RSS/ATOM Feed Aggregation&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; can integrate data from external &lt;acronym title=&quot;Extensible Markup Language&quot;&gt;XML&lt;/acronym&gt; feeds. For parsing the &lt;acronym title=&quot;Extensible Markup Language&quot;&gt;XML&lt;/acronym&gt; feeds, &lt;a href=&quot;http://simplepie.org/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://simplepie.org/&quot;  rel=&quot;nofollow&quot;&gt;SimplePie&lt;/a&gt; is used. All formats understood by &lt;a href=&quot;http://www.pythonclub.org/wiki/simplepie&quot; class=&quot;wikilink2&quot; title=&quot;wiki:simplepie&quot; rel=&quot;nofollow&quot;&gt;SimplePie&lt;/a&gt; can be used in &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; as well. You can influence the rendering by multiple additional space separated parameters:

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; Parameter  &lt;/th&gt;&lt;th class=&quot;col1&quot;&gt; Description &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt; any number &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; will be used as maximum number items to show, defaults to 8 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; reverse    &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; display the last items in the feed first &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; author     &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; show item authors names &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row4&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; date       &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; show item dates &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row5&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt; description&lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; show the item description. If &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aconfig%23htmlok&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aconfig%23htmlok&quot;&gt;HTML&lt;/a&gt; is disabled all tags will be stripped &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row6&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt; &lt;em&gt;n&lt;/em&gt;[dhm] &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; to re-render the page if it is more than &lt;em&gt;refresh period&lt;/em&gt; since the page was last rendered.
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Example:&lt;/strong&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;{{rss&amp;gt;http://slashdot.org/index.rss 5 author date 1h }}&lt;/pre&gt;
&lt;ul class=&quot;rss&quot;&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/B913M1Aw0QY/Solar-Powered-Augmented-Reality-Contact-Lenses&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/B913M1Aw0QY/Solar-Powered-Augmented-Reality-Contact-Lenses&quot;  rel=&quot;nofollow&quot;&gt;Solar Powered Augmented Reality Contact Lenses&lt;/a&gt; 由 samzenpus (2010/03/17 17:45)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/grKgbKQCWOo/Disgruntled-Ex-Employee-Remotely-Disables-100-Cars&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/grKgbKQCWOo/Disgruntled-Ex-Employee-Remotely-Disables-100-Cars&quot;  rel=&quot;nofollow&quot;&gt;Disgruntled Ex-Employee Remotely Disables 100 Cars&lt;/a&gt; 由 samzenpus (2010/03/17 16:35)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/bEYiAs87RdE/Lord-Britishs-Lost-Lunar-Rover-Found-After-37-Years&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/bEYiAs87RdE/Lord-Britishs-Lost-Lunar-Rover-Found-After-37-Years&quot;  rel=&quot;nofollow&quot;&gt;Lord British&amp;#039;s Lost Lunar Rover Found, After 37 Years&lt;/a&gt; 由 timothy (2010/03/17 15:20)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/z6wyHdUZ19g/Complex-Life-Found-Under-600-Feet-of-Antarctic-Ice&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/z6wyHdUZ19g/Complex-Life-Found-Under-600-Feet-of-Antarctic-Ice&quot;  rel=&quot;nofollow&quot;&gt;Complex Life Found Under 600 Feet of Antarctic Ice&lt;/a&gt; 由 timothy (2010/03/17 14:33)&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/_Lm7WWvMLlI/Wikipedias-Assault-On-Patent-Encumbered-Codecs&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://rss.slashdot.org/~r/Slashdot/slashdot/~3/_Lm7WWvMLlI/Wikipedias-Assault-On-Patent-Encumbered-Codecs&quot;  rel=&quot;nofollow&quot;&gt;Wikipedia&amp;#039;s Assault On Patent-Encumbered Codecs&lt;/a&gt; 由 timothy (2010/03/17 13:44)&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;RSS/ATOM Feed Aggregation&quot; [13707-14980] --&gt;
&lt;h2&gt;&lt;a name=&quot;embedding_html_and_php&quot; id=&quot;embedding_html_and_php&quot;&gt;Embedding HTML and PHP&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

You can embed raw &lt;acronym title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/acronym&gt; or &lt;acronym title=&quot;Hypertext Preprocessor&quot;&gt;PHP&lt;/acronym&gt; code into your documents by using the &lt;code&gt;html&lt;/code&gt; or &lt;code&gt;php&lt;/code&gt; tags like this:

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
&amp;lt;html&amp;gt;
This is some &amp;lt;font color=&amp;quot;red&amp;quot; size=&amp;quot;+1&amp;quot;&amp;gt;HTML&amp;lt;/font&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;

&lt;p&gt;

This is some &lt;font color=&quot;red&quot; size=&quot;+1&quot;&gt;HTML&lt;/font&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
&amp;lt;php&amp;gt;
echo &amp;#039;A logo generated by PHP:&amp;#039;;
echo &amp;#039;&amp;lt;img src=&amp;quot;&amp;#039; . $_SERVER[&amp;#039;PHP_SELF&amp;#039;] . &amp;#039;?=&amp;#039; . php_logo_guid() . &amp;#039;&amp;quot; alt=&amp;quot;PHP Logo !&amp;quot; /&amp;gt;&amp;#039;;
&amp;lt;/php&amp;gt;
&lt;/pre&gt;

&lt;p&gt;
&lt;code class=&quot;code php&quot;&gt;&lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;'A logo generated by PHP:'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;'&amp;lt;img src=&amp;quot;'&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;re1&quot;&gt;$_SERVER&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'PHP_SELF'&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;'?='&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/php_logo_guid&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;php_logo_guid&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;'&amp;quot; alt=&amp;quot;PHP Logo !&amp;quot; /&amp;gt;'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;&lt;/code&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Please Note&lt;/strong&gt;: &lt;acronym title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/acronym&gt; and &lt;acronym title=&quot;Hypertext Preprocessor&quot;&gt;PHP&lt;/acronym&gt; embedding is disabled by default in the configuration. If disabled, the code is displayed instead of executed.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Embedding HTML and PHP&quot; [14981-15710] --&gt;
&lt;h2&gt;&lt;a name=&quot;syntax_plugins&quot; id=&quot;syntax_plugins&quot;&gt;Syntax Plugins&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;&amp;#039;s syntax can be extended by &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Aplugins&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Aplugins&quot;&gt;Plugins&lt;/a&gt;. How the installed plugins are used is described on their appropriate description pages. The following syntax plugins are available in this particular &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; installation:
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://wiki.splitbrain.org/plugin:include&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://wiki.splitbrain.org/plugin:include&quot;  rel=&quot;nofollow&quot;&gt;Include Plugin&lt;/a&gt; &lt;em&gt;&lt;/em&gt; 由 &lt;a href=&quot;mailto:&amp;#x64;&amp;#x6f;&amp;#x6b;&amp;#x75;&amp;#x77;&amp;#x69;&amp;#x6b;&amp;#x69;&amp;#x40;&amp;#x63;&amp;#x68;&amp;#x69;&amp;#x6d;&amp;#x65;&amp;#x72;&amp;#x69;&amp;#x63;&amp;#x2e;&amp;#x64;&amp;#x65;&quot; class=&quot;mail JSnocheck&quot; title=&quot;&amp;#x64;&amp;#x6f;&amp;#x6b;&amp;#x75;&amp;#x77;&amp;#x69;&amp;#x6b;&amp;#x69;&amp;#x40;&amp;#x63;&amp;#x68;&amp;#x69;&amp;#x6d;&amp;#x65;&amp;#x72;&amp;#x69;&amp;#x63;&amp;#x2e;&amp;#x64;&amp;#x65;&quot;&gt;Gina Häußge, Michael Klier, Esther Brunner&lt;/a&gt;&lt;br /&gt;Displays a wiki page (or a section thereof) within another&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://wiki.splitbrain.org/plugin:include&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://wiki.splitbrain.org/plugin:include&quot;  rel=&quot;nofollow&quot;&gt;Include Plugin (permalink header component)&lt;/a&gt; &lt;em&gt;&lt;/em&gt; 由 &lt;a href=&quot;mailto:&amp;#x64;&amp;#x6f;&amp;#x6b;&amp;#x75;&amp;#x77;&amp;#x69;&amp;#x6b;&amp;#x69;&amp;#x40;&amp;#x63;&amp;#x68;&amp;#x69;&amp;#x6d;&amp;#x65;&amp;#x72;&amp;#x69;&amp;#x63;&amp;#x2e;&amp;#x64;&amp;#x65;&quot; class=&quot;mail JSnocheck&quot; title=&quot;&amp;#x64;&amp;#x6f;&amp;#x6b;&amp;#x75;&amp;#x77;&amp;#x69;&amp;#x6b;&amp;#x69;&amp;#x40;&amp;#x63;&amp;#x68;&amp;#x69;&amp;#x6d;&amp;#x65;&amp;#x72;&amp;#x69;&amp;#x63;&amp;#x2e;&amp;#x64;&amp;#x65;&quot;&gt;Gina Häußge, Michael Klier&lt;/a&gt;&lt;br /&gt;Provides a header instruction which renders a permalink to the included page&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://wiki.splitbrain.org/plugin:info&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://wiki.splitbrain.org/plugin:info&quot;  rel=&quot;nofollow&quot;&gt;Info Plugin&lt;/a&gt; &lt;em&gt;2006-12-09&lt;/em&gt; 由 &lt;a href=&quot;mailto:&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot; class=&quot;mail JSnocheck&quot; title=&quot;&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot;&gt;Andreas Gohr&lt;/a&gt;&lt;br /&gt;Displays information about various DokuWiki internals&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;
&lt;!-- SECTION &quot;Syntax Plugins&quot; [15711-] --&gt;&lt;div class=&quot;footnotes&quot;&gt;
&lt;div class=&quot;fn&quot;&gt;&lt;sup&gt;&lt;a href=&quot;#fnt__1&quot; id=&quot;fn__1&quot; name=&quot;fn__1&quot; class=&quot;fn_bot&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt; 
This is a footnote&lt;/div&gt;
&lt;/div&gt;
</description>
        <category>wiki</category>
            <pubDate>Wed, 17 Mar 2010 07:39:42 -0700</pubDate>
        </item>
        <item>
            <title>新手入门</title>
            <link>http://www.pythonclub.org/wiki/syntax</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;新手入门&quot; id=&quot;新手入门&quot;&gt;新手入门&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;

相信大家通过实战很快能学会怎么使用这个编辑工具，两个建议：
&lt;/p&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 先上手实践，如果遇到问题再回过头翻看这里的帮助文档；&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 编辑中尽量多使用“预览”，最终确认后再保存，这样可以节省时间和资源&lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_fun.gif&quot; class=&quot;middle&quot; alt=&quot;^_^&quot; /&gt;。&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;新手入门&quot; [1-310] --&gt;
&lt;h2&gt;&lt;a name=&quot;dokuwiki格式语法说明_formatting_syntax_中文版&quot; id=&quot;dokuwiki格式语法说明_formatting_syntax_中文版&quot;&gt;DokuWiki格式语法说明 （Formatting Syntax 中文版）&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; 支持一些简单的标记语言, 以尽最大可能使文档看上去更友好。本页面包含了所有你在编辑页面时可能用到的语法的说明。如果需要查看本页源码，只需要点击页面顶部或者底部的 &lt;em&gt;编辑本页&lt;/em&gt; 按钮即可。&lt;br/&gt;

如果您是初尝Wiki，那么可以使用 &lt;a href=&quot;http://www.pythonclub.org/playground/playground&quot; class=&quot;wikilink1&quot; title=&quot;playground:playground&quot;&gt;Wiki砂箱&lt;/a&gt; 来尽情挥洒。&lt;br/&gt;

通过&lt;a href=&quot;http://wiki.splitbrain.org/quickbuttons&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/quickbuttons&quot;&gt;快捷按钮&lt;/a&gt;，您可以更方便地使用这些标记。
&lt;/p&gt;

&lt;p&gt;
注：本文档由 jiayq84@gmail.com 根据&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; 2005.2.6版本的语法说明翻译。&lt;br/&gt;

如果您发现什么问题，请您发信告知，谢谢！&lt;br/&gt;

&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;DokuWiki格式语法说明 （Formatting Syntax 中文版）&quot; [311-1020] --&gt;
&lt;h2&gt;&lt;a name=&quot;基本文本格式&quot; id=&quot;基本文本格式&quot;&gt;基本文本格式&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;支持 &lt;strong&gt;粗体&lt;/strong&gt;， &lt;em&gt;斜体&lt;/em&gt;， &lt;em class=&quot;u&quot;&gt;下划线&lt;/em&gt; 以及 &lt;code&gt;等宽体&lt;/code&gt; 等格式。当然，您也可以 &lt;strong&gt;&lt;em class=&quot;u&quot;&gt;&lt;em&gt;&lt;code&gt;混合使用&lt;/code&gt;&lt;/em&gt;&lt;/em&gt;&lt;/strong&gt; 所有这些格式。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki支持 **粗体**， //斜体//， __下划线__ and &amp;#039;&amp;#039;等宽体&amp;#039;&amp;#039; 等格式。
当然，您也可以 **__//&amp;#039;&amp;#039;混合使用&amp;#039;&amp;#039;//__** 所有这些格式。&lt;/pre&gt;

&lt;p&gt;

可以使用 &lt;sub&gt;下标&lt;/sub&gt; 和 &lt;sup&gt;上标&lt;/sup&gt;。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;可以使用 &amp;lt;sub&amp;gt;下标&amp;lt;/sub&amp;gt; 和 &amp;lt;sup&amp;gt;上标&amp;lt;/sup&amp;gt;。&lt;/pre&gt;

&lt;p&gt;

您也可以使用 &lt;del&gt;删除线&lt;/del&gt; 标记某些信息。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;您也可以使用 &amp;lt;del&amp;gt;删除线&amp;lt;/del&amp;gt; 标记某些信息。&lt;/pre&gt;

&lt;p&gt;

&lt;strong&gt;段落&lt;/strong&gt; 是由空行所建立的。如果您想 &lt;strong&gt;强制建立新行&lt;/strong&gt; 而不建立段落，您可以使用两个连续的反斜杠+空格或是回车作为标记。请看样例：
&lt;/p&gt;

&lt;p&gt;
这是一些有着换行标记的文字。&lt;br/&gt;
 请注意
反斜杠只在回车符之前&lt;br/&gt;

或者在&lt;br/&gt;
 一个空格之前的时候才有效。 \\而这样就并不起作用。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;这是一些有着换行标记的文字。\\ 请注意
反斜杠只在回车符之前\\
或者在\\ 一个空格之前的时候才有效。 \\而这样就并不起作用。&lt;/pre&gt;

&lt;p&gt;

请只在必须的时候才使用强制的换行标记。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;基本文本格式&quot; [1021-2224] --&gt;
&lt;h2&gt;&lt;a name=&quot;链接&quot; id=&quot;链接&quot;&gt;链接&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;支持多种形式的链接。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;链接&quot; [2225-2284] --&gt;
&lt;h3&gt;&lt;a name=&quot;外部链接&quot; id=&quot;外部链接&quot;&gt;外部链接&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

外部链接会被自动地识别： &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;http://www.google.com&lt;/a&gt; 或者简单地写作 &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;www.google.com&lt;/a&gt; - 当然您也可以为链接设置名字： &lt;a href=&quot;http://www.google.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.google.com&quot;  rel=&quot;nofollow&quot;&gt;链接到google&lt;/a&gt;. 类似这样的电子邮件地址： &lt;a href=&quot;mailto:&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot; class=&quot;mail JSnocheck&quot; title=&quot;&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&quot;&gt;&amp;#x61;&amp;#x6e;&amp;#x64;&amp;#x69;&amp;#x40;&amp;#x73;&amp;#x70;&amp;#x6c;&amp;#x69;&amp;#x74;&amp;#x62;&amp;#x72;&amp;#x61;&amp;#x69;&amp;#x6e;&amp;#x2e;&amp;#x6f;&amp;#x72;&amp;#x67;&lt;/a&gt; 也可以被识别。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki支持多种形式的链接。外部链接会被自动地识别：
http://www.google.com 或者简单地写作 www.google.com
- 当然您也可以为链接设置名字： [[http://www.google.com|链接到google]]。
类似这样的电子邮件地址： &amp;lt;andi@splitbrain.org&amp;gt; 也可以被识别。&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;外部链接&quot; [2285-2888] --&gt;
&lt;h3&gt;&lt;a name=&quot;内部链接&quot; id=&quot;内部链接&quot;&gt;内部链接&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

内部链接可以用方括号创建。您可以只给出链接的地址：&lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot;&gt;wiki:pagename&lt;/a&gt;，也可以附加上链接的名字：&lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Apagename&quot;&gt;我的链接&lt;/a&gt;。Wiki的页面名字将会被自动地识别为小写字母，并且不允许使用特殊字符。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;内部链接可以用方括号创建。您可以只给出链接的地址：[[pagename]]，
也可以附加上链接的名字：[[pagename|我的链接]]。
Wiki的页面名字将会被自动地识别为小写字母，并且不允许使用特殊字符。&lt;/pre&gt;

&lt;p&gt;

您可以通过在页面名中使用冒号的方式来使用 &lt;a href=&quot;http://www.pythonclub.org/wiki/namespaces&quot; class=&quot;wikilink2&quot; title=&quot;wiki:namespaces&quot; rel=&quot;nofollow&quot;&gt;命名空间&lt;/a&gt;。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;您可以通过在页面名中使用冒号的方式来使用 [[wiki:namespaces|命名空间]]。&lt;/pre&gt;

&lt;p&gt;

如果您需要关于&lt;strong&gt;命名空间(namespaces)&lt;/strong&gt;的更详细的信息，请参见 &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Anamespaces&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Anamespaces&quot;&gt;wiki:namespaces&lt;/a&gt;。
&lt;/p&gt;

&lt;p&gt;
您也可以链接到一个网页内部的某一节，只需要将该节书签的名称以一个#号分隔加在网页的地址后面即可。这是一个连向 &lt;a href=&quot;http://www.pythonclub.org/help/start#internal&quot; class=&quot;wikilink2&quot; title=&quot;help:start&quot; rel=&quot;nofollow&quot;&gt;本节&lt;/a&gt; 的链接。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;这是一个连向 [[syntax#internal|本节]] 的链接。&lt;/pre&gt;

&lt;p&gt;

注：

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 到 &lt;span class=&quot;curid&quot;&gt;&lt;a href=&quot;http://www.pythonclub.org/wiki/syntax&quot; class=&quot;wikilink1&quot; title=&quot;wiki:syntax&quot;&gt;已存在页面&lt;/a&gt;&lt;/span&gt; 的链接和到 &lt;a href=&quot;http://www.pythonclub.org/wiki/nonexisting&quot; class=&quot;wikilink2&quot; title=&quot;wiki:nonexisting&quot; rel=&quot;nofollow&quot;&gt;未存在页面&lt;/a&gt; 的链接，其外观是不同的。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 默认情况下，&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;不使用 &lt;a href=&quot;http://en.wikipedia.org/wiki/CamelCase&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/CamelCase&quot;&gt;CamelCase&lt;/a&gt; 来自动建立链接，（&lt;a href=&quot;http://www.pythonclub.org/wiki/camelcase&quot; class=&quot;wikilink2&quot; title=&quot;wiki:camelcase&quot; rel=&quot;nofollow&quot;&gt;CamelCase&lt;/a&gt;类似于&lt;a href=&quot;http://www.pythonclub.org/wiki/pmwiki&quot; class=&quot;wikilink2&quot; title=&quot;wiki:pmwiki&quot; rel=&quot;nofollow&quot;&gt;PmWiki&lt;/a&gt;中的&lt;a href=&quot;http://www.pythonclub.org/wiki/wikiword&quot; class=&quot;wikilink2&quot; title=&quot;wiki:wikiword&quot; rel=&quot;nofollow&quot;&gt;WikiWord&lt;/a&gt;）。但是也可以在 &lt;a href=&quot;http://wiki.splitbrain.org/config&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/config&quot;&gt;设置文件&lt;/a&gt; 中启用它。 Hint: If &lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; is a link, then it&amp;#039;s enabled.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 当一节的标题改变时，该节的书签也会改变，因此，请不要太依靠网页内的链接。&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;内部链接&quot; [2889-4516] --&gt;
&lt;h3&gt;&lt;a name=&quot;wiki间链接&quot; id=&quot;wiki间链接&quot;&gt;Wiki间链接&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;支持 &lt;a href=&quot;http://wiki.splitbrain.org/wiki%3Ainterwiki&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/wiki%3Ainterwiki&quot;&gt;Wiki间链接&lt;/a&gt; ，即到其他wiki的链接。例如，这是一个到Wikipedia上关于Wiki的一个页面的的链接： &lt;a href=&quot;http://en.wikipedia.org/wiki/Wiki&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/Wiki&quot;&gt;Wiki&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;DokuWiki支持 [[interwiki|Wiki间链接]] ，即到其他wiki的链接。
例如，这是一个到Wikipedia上关于Wiki的一个页面的的链接： [[wp&amp;gt;Wiki]] &lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Wiki间链接&quot; [4517-4885] --&gt;
&lt;h3&gt;&lt;a name=&quot;windows共享文件夹&quot; id=&quot;windows共享文件夹&quot;&gt;Windows共享文件夹&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

Windows共享文件夹，例如 &lt;a href=&quot;file://///server/share&quot; class=&quot;windows&quot; title=&quot;\\server\share&quot; onclick=&quot;if(document.all == null){alert('连接到 Windows 共享功能只有在 IE 浏览器中才能正常使用。\n但您仍能复制并粘贴该链接。');}&quot; onkeypress=&quot;if(document.all == null){alert('连接到 Windows 共享功能只有在 IE 浏览器中才能正常使用。\n但您仍能复制并粘贴该链接。');}&quot;&gt;this&lt;/a&gt; 也可以被识别。请注意，这只在内部 &lt;a href=&quot;http://en.wikipedia.org/wiki/Intranet&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/Intranet&quot;&gt;局域网&lt;/a&gt; 等环境中才可能被成功访问。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;Windows共享文件夹，例如 [[\\server\share|this]] 也可以被识别。&lt;/pre&gt;

&lt;p&gt;

注：

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 出于安全原因，只有在微软IE浏览器上才能够直接访问Windows共享文件夹。&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Windows共享文件夹&quot; [4886-5283] --&gt;
&lt;h3&gt;&lt;a name=&quot;图像链接&quot; id=&quot;图像链接&quot;&gt;图像链接&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;

您也可以用图像来作为一个内部或者外部的链接，只需同时使用链接和图像的语法，如下所示：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;[[http://www.php.net|{{wiki:dokuwiki-128.png}}]]&lt;/pre&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.php.net&quot; class=&quot;media&quot; target=&quot;_blank&quot; title=&quot;http://www.php.net&quot;  rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
请注意：在链接名中使用语法，只有显示图像的语法会被识别，请不要使用其它语法。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;图像链接&quot; [5284-5653] --&gt;
&lt;h2&gt;&lt;a name=&quot;脚注&quot; id=&quot;脚注&quot;&gt;脚注&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

您可以使用两个连续小括号来添加脚注&lt;sup&gt;&lt;a href=&quot;#fn__1&quot; name=&quot;fnt__1&quot; id=&quot;fnt__1&quot; class=&quot;fn_top&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt;。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;您可以使用两个连续小括号来添加脚注((看这里，这是一个脚注))。&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;脚注&quot; [5654-5855] --&gt;
&lt;h2&gt;&lt;a name=&quot;标题段落&quot; id=&quot;标题段落&quot;&gt;标题段落&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

您可以使用最多达5层的标题来使您的页面更富结构性。如果您使用了三个以上的标题，那么&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;会自动在页面上生成一个名为“本页目录”的标题列表。当然，您也可以关闭这项特性，只需在编辑时在页面里加入 &lt;code&gt;~~NOTOC~~&lt;/code&gt; 字样即可。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;标题段落&quot; [5856-6212] --&gt;
&lt;h3&gt;&lt;a name=&quot;h3标题&quot; id=&quot;h3标题&quot;&gt;H3标题&lt;/a&gt;&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;/div&gt;

&lt;h4&gt;&lt;a name=&quot;h4标题&quot; id=&quot;h4标题&quot;&gt;H4标题&lt;/a&gt;&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;/div&gt;

&lt;h5&gt;&lt;a name=&quot;h5标题&quot; id=&quot;h5标题&quot;&gt;H5标题&lt;/a&gt;&lt;/h5&gt;
&lt;div class=&quot;level5&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;==== H3标题 ====
=== H4标题 ===
== H5标题 ==&lt;/pre&gt;

&lt;p&gt;

您可以通过连续的4个以上“-”号来创建一条水平分割线：

&lt;/p&gt;
&lt;hr /&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;H3标题&quot; [6213-6408] --&gt;
&lt;h2&gt;&lt;a name=&quot;图像和其它文件&quot; id=&quot;图像和其它文件&quot;&gt;图像和其它文件&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

您可以使用双大括号来在页面中加入 &lt;a href=&quot;http://wiki.splitbrain.org/images&quot; class=&quot;interwiki iw_doku&quot; title=&quot;http://wiki.splitbrain.org/images&quot;&gt;图像&lt;/a&gt; 。您还可以选择是否指定图像的显示大小。
&lt;/p&gt;

&lt;p&gt;
原始大小：                        &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
指定宽度：                        &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=50&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
指定宽度和高度：                  &lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=200&amp;amp;h=50&amp;amp;cache=cache&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
重新指定宽度和高度的外部图像：    &lt;a href=&quot;http://www.pythonclub.org/lib/exe/fetch.php?cache=cache&amp;amp;media=http%3A%2F%2Fde3.php.net%2Fimages%2Fphp.gif&quot; class=&quot;media&quot; title=&quot;http://de3.php.net/images/php.gif&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/lib/exe/fetch.php?w=200&amp;amp;h=50&amp;amp;cache=cache&amp;amp;media=http%3A%2F%2Fde3.php.net%2Fimages%2Fphp.gif&quot; class=&quot;media&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;原始大小：                        {{wiki:dokuwiki-128.png}}
指定宽度：                        {{wiki:dokuwiki-128.png?50}}
指定宽度和高度：                  {{wiki:dokuwiki-128.png?200*50}}
重新指定宽度和高度的外部图像：    {{http://de3.php.net/images/php.gif?200x50}}&lt;/pre&gt;

&lt;p&gt;

使用左方或者右方的空格，您可以选择对齐方式：
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediaright&quot; align=&quot;right&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;medialeft&quot; align=&quot;left&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediacenter&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;{{ wiki:dokuwiki-128.png}}
{{wiki:dokuwiki-128.png }}
{{ wiki:dokuwiki-128.png }}&lt;/pre&gt;

&lt;p&gt;

当然，您也可以指定一个图像的名字，将鼠标移到图像上可以看到效果。
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pythonclub.org/_detail/wiki/dokuwiki-128.png?id=wiki%3Asyntax&amp;amp;cache=cache&quot; class=&quot;media&quot; title=&quot;wiki:dokuwiki-128.png&quot;&gt;&lt;img src=&quot;http://www.pythonclub.org/_media/wiki/dokuwiki-128.png?w=&amp;amp;h=&amp;amp;cache=cache&quot; class=&quot;mediacenter&quot; title=&quot;这是图像的名字&quot; alt=&quot;这是图像的名字&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;{{ wiki:dokuwiki-128.png |这是图像的名字}}&lt;/pre&gt;

&lt;p&gt;

如果您指定的文件名（无论是外部的还是内部的）不是一个图像（&lt;code&gt;gif,jpeg,png&lt;/code&gt;），那么它将被显示为一个链接。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;图像和其它文件&quot; [6409-7785] --&gt;
&lt;h2&gt;&lt;a name=&quot;列表&quot; id=&quot;列表&quot;&gt;列表&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

Dokuwiki支持带编号或不带编号的列表。要使用列表，在文字前加入两个空格，然后使用&lt;code&gt;*&lt;/code&gt;标志不带编号的列表，用&lt;code&gt;-&lt;/code&gt;标志带编号的列表。

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 列表&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 第二项&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 下一层&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 第三项&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 带编号的列表&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 第二项&lt;/div&gt;
&lt;ol&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 用缩进表示更深的层&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 完了&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;code&quot;&gt;
  * 列表
  * 第二项
    * 下一层
  * 第三项

  - 带编号的列表
  - 第二项
    - 用缩进表示更深的层
  - 完了
&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;列表&quot; [7786-8283] --&gt;
&lt;h2&gt;&lt;a name=&quot;表情符号&quot; id=&quot;表情符号&quot;&gt;表情符号&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;会将一些常用的  &lt;a href=&quot;http://en.wikipedia.org/wiki/emoticon&quot; class=&quot;interwiki iw_wp&quot; title=&quot;http://en.wikipedia.org/wiki/emoticon&quot;&gt;表情符号&lt;/a&gt; 转换为图像。除了默认的表情符号以外，您也可以在 &lt;code&gt;smiley&lt;/code&gt; 文件夹中放入更多的表情图，然后在 &lt;code&gt;conf/smileys.conf&lt;/code&gt; 中设置它们即可。下面是Dokuwiki包含了的表情图像：

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_cool.gif&quot; class=&quot;middle&quot; alt=&quot;8-)&quot; /&gt;   8-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_eek.gif&quot; class=&quot;middle&quot; alt=&quot;8-O&quot; /&gt;   8-O  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_sad.gif&quot; class=&quot;middle&quot; alt=&quot;:-(&quot; /&gt;   :-(  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_smile.gif&quot; class=&quot;middle&quot; alt=&quot;:-)&quot; /&gt;   :-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_smile2.gif&quot; class=&quot;middle&quot; alt=&quot;=)&quot; /&gt;    =)   &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_doubt.gif&quot; class=&quot;middle&quot; alt=&quot;:-/&quot; /&gt;   :-/  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_doubt2.gif&quot; class=&quot;middle&quot; alt=&quot;:-\&quot; /&gt;   :-\  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_confused.gif&quot; class=&quot;middle&quot; alt=&quot;:-?&quot; /&gt;   :-?  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_biggrin.gif&quot; class=&quot;middle&quot; alt=&quot;:-D&quot; /&gt;   :-D  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_razz.gif&quot; class=&quot;middle&quot; alt=&quot;:-P&quot; /&gt;   :-P  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_surprised.gif&quot; class=&quot;middle&quot; alt=&quot;:-O&quot; /&gt;   :-O  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_silenced.gif&quot; class=&quot;middle&quot; alt=&quot;:-X&quot; /&gt;   :-X  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_neutral.gif&quot; class=&quot;middle&quot; alt=&quot;:-|&quot; /&gt;   :-|  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_wink.gif&quot; class=&quot;middle&quot; alt=&quot;;-)&quot; /&gt;   ;-)  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_fun.gif&quot; class=&quot;middle&quot; alt=&quot;^_^&quot; /&gt;   ^_^  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_question.gif&quot; class=&quot;middle&quot; alt=&quot;:?:&quot; /&gt;   :?:  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_exclaim.gif&quot; class=&quot;middle&quot; alt=&quot;:!:&quot; /&gt;   :!:  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/icon_lol.gif&quot; class=&quot;middle&quot; alt=&quot;LOL&quot; /&gt;   LOL  &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/fixme.gif&quot; class=&quot;middle&quot; alt=&quot;FIXME&quot; /&gt;   FIXME &lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;img src=&quot;http://www.pythonclub.org/lib/images/smileys/delete.gif&quot; class=&quot;middle&quot; alt=&quot;DELETEME&quot; /&gt;  DELETEME &lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;表情符号&quot; [8284-9003] --&gt;
&lt;h2&gt;&lt;a name=&quot;印刷样式&quot; id=&quot;印刷样式&quot;&gt;印刷样式&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;可以将特定字符转换为印刷时所用的样式。下面是可以识别的这类字符的列表：
&lt;/p&gt;

&lt;p&gt;
→ ← ↔ ⇒ ⇐ ⇔ » « – — 640&amp;times;480 © ™ ®
“He thought &amp;#039;It&amp;#039;s a man&amp;#039;s world&amp;#039;…”
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
-&amp;gt; &amp;lt;- &amp;lt;-&amp;gt; =&amp;gt; &amp;lt;= &amp;lt;=&amp;gt; &amp;gt;&amp;gt; &amp;lt;&amp;lt; -- --- 640x480 (c) (tm) (r)
&amp;quot;He thought &amp;#039;It&amp;#039;s a man&amp;#039;s world&amp;#039;...&amp;quot;
&lt;/pre&gt;

&lt;p&gt;
请注意：在配置文件中可以禁用这类自动转换。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;印刷样式&quot; [9004-9412] --&gt;
&lt;h2&gt;&lt;a name=&quot;表格&quot; id=&quot;表格&quot;&gt;表格&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;可以用简单的语法创建表格。 

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; 标题1        &lt;/th&gt;&lt;th class=&quot;col1 leftalign&quot;&gt; 标题2         &lt;/th&gt;&lt;th class=&quot;col2 leftalign&quot;&gt; 标题3       &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; (1,1)        &lt;/td&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; (1,2)         &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; (1,3)       &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; (2,1)        &lt;/td&gt;&lt;td class=&quot;col1 leftalign&quot; colspan=&quot;2&quot;&gt; 展宽的单元格               &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt; (3,1)        &lt;/td&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; (3,2)         &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; (3,3)       &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

表格的每一行都以分隔符 &lt;code&gt;|&lt;/code&gt; （普通行）或者 &lt;code&gt;^&lt;/code&gt; （标题行）作为开头和结束。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;^ 标题1        ^ 标题2         ^ 标题3       ^
| (1,1)        | (1,2)         | (1,3)       |
| (2,1)        | 展宽的单元格               ||
| (3,1)        | (3,2)         | (3,3)       |&lt;/pre&gt;

&lt;p&gt;

要水平合并单元格，只需要将后一个单元格设置为空即可，如上面演示的一样。请确保每一行有相同数量的单元格分隔符！
&lt;/p&gt;

&lt;p&gt;
竖直的标题列也是可以实现的：

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;td class=&quot;col0 rightalign&quot;&gt;          &lt;/td&gt;&lt;th class=&quot;col1 leftalign&quot;&gt; 标题1          &lt;/th&gt;&lt;th class=&quot;col2 leftalign&quot;&gt; 标题2          &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; 标题3    &lt;/th&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; (1,2)          &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; (1,3)          &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; 标题4    &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; 不再合并单元格 &lt;/td&gt;&lt;td class=&quot;col2 rightalign&quot;&gt;                &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;th class=&quot;col0 leftalign&quot;&gt; 标题5    &lt;/th&gt;&lt;td class=&quot;col1 leftalign&quot;&gt; (2,2)          &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt; (2,3)          &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

可以看到，单元格前面的分隔符决定了单元格的格式。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;|          ^ 标题1          ^ 标题2          ^
^ 标题3    | (1,2)          | (1,3)          |
^ 标题4    | 不再合并单元格 |                |
^ 标题5    | (2,2)          | (2,3)          |&lt;/pre&gt;

&lt;p&gt;

注：垂直合并单元格尚未实现。
&lt;/p&gt;

&lt;p&gt;
您可以对齐表格的文字。只需要添加多余两个的空格在您需要对齐的方向的反向即可：如果需要右对齐，在左边添加两个空格；反之，则在右边添加。在两边均添加空格可以实现中间对齐。

&lt;/p&gt;
&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0 centeralign&quot; colspan=&quot;3&quot;&gt;           有对齐的表格                   &lt;/th&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0 rightalign&quot;&gt;        右对齐&lt;/td&gt;&lt;td class=&quot;col1 centeralign&quot;&gt;     居中     &lt;/td&gt;&lt;td class=&quot;col2 leftalign&quot;&gt;左对齐        &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0 leftalign&quot;&gt;左对齐        &lt;/td&gt;&lt;td class=&quot;col1 rightalign&quot;&gt;        右对齐&lt;/td&gt;&lt;td class=&quot;col2 centeralign&quot;&gt;     居中     &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; xxxxxxxxxxxx &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;

下面是源文件中的格式：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;^           有对齐的表格                   ^^^
|        右对齐|     居中     |左对齐        |
|左对齐        |        右对齐|     居中     |
| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;表格&quot; [9413-11463] --&gt;
&lt;h2&gt;&lt;a name=&quot;无格式区块&quot; id=&quot;无格式区块&quot;&gt;无格式区块&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

您可以在文章中插入无格式区块，在这些区块中Wiki语法将不起作用。可以有三种方法：在行前加两个以上的空格（前面做样例时用的方法），或者可以使用 &lt;code&gt;Code&lt;/code&gt; 或 &lt;code&gt;file&lt;/code&gt; 标记。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
这是一段被code包围的区块，其中的空格都被保留了：像              &amp;lt;-这样
&lt;/pre&gt;
&lt;pre class=&quot;file&quot;&gt;
和code是类似的。不过您可以用这个来表示您引用了一个文件的内容。  
&lt;/pre&gt;

&lt;p&gt;
要让Wiki语法解释完全失效，可以用 &lt;code&gt;nowiki&lt;/code&gt; 标签包围整个区块，或者也可以简单地使用双百分号标记 &lt;code&gt;%%&lt;/code&gt;。
&lt;/p&gt;

&lt;p&gt;

这是一段完全没有Wiki语法解释的文字，例如：http://www.splitbrain.org ， **粗体**，虽然按照语法书写，但是它们并没有被解释。

&lt;/p&gt;

&lt;p&gt;
如何使用这些标记，请查看这一段的源文件。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;无格式区块&quot; [11464-12363] --&gt;
&lt;h2&gt;&lt;a name=&quot;语法&quot; id=&quot;语法&quot;&gt;语法&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt; 可以将源代码作语法高亮以增加可读性。它使用称作 &lt;a href=&quot;http://qbnz.com/highlighter/&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://qbnz.com/highlighter/&quot;  rel=&quot;nofollow&quot;&gt;GeSHi&lt;/a&gt; 的通用语法高亮工具（Generic Syntax Highlighter）——所有被&lt;a href=&quot;http://www.pythonclub.org/wiki/geshi&quot; class=&quot;wikilink2&quot; title=&quot;wiki:geshi&quot; rel=&quot;nofollow&quot;&gt;GeSHi&lt;/a&gt;支持的语言都可以在&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;中得到高亮。使用code标记的方法和上面是类似的，不过需要指定使用的语言，例如： &lt;code&gt;&amp;lt;code java&amp;gt;&lt;/code&gt;。
&lt;/p&gt;
&lt;pre class=&quot;code java&quot;&gt;&lt;span class=&quot;coMULTI&quot;&gt;/** 
 * The HelloWorldApp class implements an application that
 * simply displays &amp;quot;Hello World!&amp;quot; to the standard output.
 */&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;class&lt;/span&gt; HelloWorldApp &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span class=&quot;kw2&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kw2&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;kw4&quot;&gt;void&lt;/span&gt; main&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;q=allinurl%3AString+java.sun.com&amp;amp;btnI=I%27m%20Feeling%20Lucky&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;String&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; args&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
        &lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;q=allinurl%3ASystem+java.sun.com&amp;amp;btnI=I%27m%20Feeling%20Lucky&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;System&lt;/span&gt;&lt;/a&gt;.&lt;span class=&quot;me1&quot;&gt;out&lt;/span&gt;.&lt;span class=&quot;me1&quot;&gt;println&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;&amp;quot;Hello World!&amp;quot;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;//Display the string.&lt;/span&gt;
    &lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
现在，&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;可以支持的语言有： &lt;em&gt;actionscript, ada, apache, asm, asp, bash, caddcl, cadlisp, c, c_mac, cpp, csharp, css, delphi, html4strict, java, javascript, lisp, lua, nsis, objc, oobas, pascal, perl, php-brief, php, python, qbasic, smarty, sql, vb, vbnet, visualfoxpro, xml&lt;/em&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;语法&quot; [12364-13352] --&gt;
&lt;h2&gt;&lt;a name=&quot;嵌入html和php&quot; id=&quot;嵌入html和php&quot;&gt;嵌入HTML和PHP&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

您可以使用 &lt;code&gt;html&lt;/code&gt; 或者 &lt;code&gt;php&lt;/code&gt;标记在文档中嵌入HTML或PHP的代码。例如：

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
&amp;lt;html&amp;gt;
这是 &amp;lt;font color=&amp;quot;red&amp;quot; size=&amp;quot;+1&amp;quot;&amp;gt;HTML&amp;lt;/font&amp;gt; 代码。
&amp;lt;/html&amp;gt;
&lt;/pre&gt;

&lt;p&gt;

这是 &lt;font color=&quot;red&quot; size=&quot;+1&quot;&gt;HTML&lt;/font&gt; 代码。

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
&amp;lt;php&amp;gt;
echo &amp;#039;由PHP生成的logo：&amp;#039;;
echo &amp;#039;&amp;lt;img src=&amp;quot;&amp;#039; . $_SERVER[&amp;#039;PHP_SELF&amp;#039;] . &amp;#039;?=&amp;#039; . php_logo_guid() . &amp;#039;&amp;quot; alt=&amp;quot;PHP Logo !&amp;quot; /&amp;gt;&amp;#039;;
&amp;lt;/php&amp;gt;
&lt;/pre&gt;

&lt;p&gt;
&lt;code class=&quot;code php&quot;&gt;&lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;'由PHP生成的logo：'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;
&lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;'&amp;lt;img src=&amp;quot;'&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;re1&quot;&gt;$_SERVER&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;'PHP_SELF'&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;'?='&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;a target=&quot;_blank&quot;  href=&quot;http://www.php.net/php_logo_guid&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;php_logo_guid&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;'&amp;quot; alt=&amp;quot;PHP Logo !&amp;quot; /&amp;gt;'&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;;&lt;/span&gt;&lt;/code&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;请注意&lt;/strong&gt;： HTML和PHP嵌入的功能默认情况下是被禁用的，因此，您可能无法看到上面的代码运行的结果而只能够看见源代码，这取决于&lt;a href=&quot;http://www.pythonclub.org/wiki/dokuwiki&quot; class=&quot;wikilink1&quot; title=&quot;wiki:dokuwiki&quot;&gt;DokuWiki&lt;/a&gt;站点的设置。(?)
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;嵌入HTML和PHP&quot; [13353-] --&gt;&lt;div class=&quot;footnotes&quot;&gt;
&lt;div class=&quot;fn&quot;&gt;&lt;sup&gt;&lt;a href=&quot;#fnt__1&quot; id=&quot;fn__1&quot; name=&quot;fn__1&quot; class=&quot;fn_bot&quot;&gt;1)&lt;/a&gt;&lt;/sup&gt; 
看这里，这是一个脚注&lt;/div&gt;
&lt;/div&gt;
</description>
        <category>wiki</category>
            <pubDate>Wed, 17 Mar 2010 07:39:30 -0700</pubDate>
        </item>
        <item>
            <title>关于Python俱乐部 - 创建</title>
            <link>http://www.pythonclub.org/about</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;关于python俱乐部&quot; id=&quot;关于python俱乐部&quot;&gt;关于Python俱乐部&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
本站致力于Python编程语言的学习与应用，包括Python基本语法，Python书籍，Python文件处理，Python网络编程等等与Python相关的话题。
&lt;/p&gt;

&lt;p&gt;
2010年3月17日，开放&lt;a href=&quot;http://www.PythonClub.org&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.PythonClub.org&quot;  rel=&quot;nofollow&quot;&gt;Python俱乐部&lt;/a&gt;系统的用户注册，注册用户可以创建，编辑本系统的文章，让我们共建Python俱乐部，使Python俱乐部成为学习Python的最佳场所。
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>admin</author>
            <pubDate>Wed, 17 Mar 2010 07:01:49 -0700</pubDate>
        </item>
        <item>
            <title>标题 H1</title>
            <link>http://www.pythonclub.org/playground/playground</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;标题_h1&quot; id=&quot;标题_h1&quot;&gt;标题 H1&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;pre class=&quot;file&quot;&gt;
fdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssdfdssd
&lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>admin</author>
        <category>playground</category>
            <pubDate>Thu, 11 Mar 2010 06:13:35 -0700</pubDate>
        </item>
        <item>
            <title>Backend Design</title>
            <link>http://www.pythonclub.org/vlsi/start</link>
            <description>


&lt;h1&gt;&lt;a name=&quot;backend_design&quot; id=&quot;backend_design&quot;&gt;Backend Design&lt;/a&gt;&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Backend Design&quot; [1-30] --&gt;
&lt;h2&gt;&lt;a name=&quot;vlsi_section_moved&quot; id=&quot;vlsi_section_moved&quot;&gt;VLSI Section Moved&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; For more VLSI information, please visit &lt;a href=&quot;http://www.truevue.org/vlsi&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.truevue.org/vlsi&quot;  rel=&quot;nofollow&quot;&gt;http://www.truevue.org/vlsi&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;VLSI Section Moved&quot; [31-136] --&gt;
&lt;h2&gt;&lt;a name=&quot;vlsi_basic_concept&quot; id=&quot;vlsi_basic_concept&quot;&gt;VLSI Basic Concept&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/vlsi/basic/unate&quot; class=&quot;wikilink1&quot; title=&quot;vlsi:basic:unate&quot;&gt;Unate&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;VLSI Basic Concept&quot; [137-194] --&gt;
&lt;h2&gt;&lt;a name=&quot;models&quot; id=&quot;models&quot;&gt;Models&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/vlsi/models/wire-load-model&quot; class=&quot;wikilink1&quot; title=&quot;vlsi:models:wire-load-model&quot;&gt;WLM - Wire load Model&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;Models&quot; [195-252] --&gt;
&lt;h2&gt;&lt;a name=&quot;eda_tools&quot; id=&quot;eda_tools&quot;&gt;EDA Tools&lt;/a&gt;&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.pythonclub.org/vlsi/tools/synopsys&quot; class=&quot;wikilink1&quot; title=&quot;vlsi:tools:synopsys&quot;&gt;Synopsys Implementation Tool Guide&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- SECTION &quot;EDA Tools&quot; [253-] --&gt;</description>
            <author>admin</author>
        <category>vlsi</category>
            <pubDate>Sat, 20 Feb 2010 19:34:51 -0700</pubDate>
        </item>
    </channel>
</rss>
