模板:已安装的扩展
来自Jabber/XMPP中文翻译计划
(版本间的差异)
小 (→已安装ParserFunctions 扩展) |
小 (→已安装SyntaxHighlight GeSHi 扩展) |
||
第22行: | 第22行: | ||
参见[http://www.mediawiki.org/wiki/Help:Extension:ParserFunctions 详细的使用方法] | 参见[http://www.mediawiki.org/wiki/Help:Extension:ParserFunctions 详细的使用方法] | ||
− | === | + | ===[http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi SyntaxHighlight GeSHi]=== |
代码高亮显示的使用方式如下 | 代码高亮显示的使用方式如下 |
2010年6月1日 (二) 17:20的版本
目录 |
已安装的扩展及其用法
CategoryTree
写法:
<categorytree mode=categories>所有文档列表</categorytree>
<categorytree mode=pages style="float:right; clear:right; margin-left:1ex; border:1px solid gray; padding:0.7ex; background-color:white;">所有文档列表</categorytree>
ParserFunctions
它扩展了10个函数,在页面中列出数字或逻辑运算公式,页面即可展示结果。
写法:
{#expr: 2 - 3 + 4 / 5 * 6}
显示结果: 3.8
参见详细的使用方法
SyntaxHighlight GeSHi
代码高亮显示的使用方式如下
PHP
写法:
<source lang="php"> <?php // Hello World in PHP echo 'Hello World!'; ?> </source>
页面显示效果:
<?php // Hello World in PHP echo 'Hello World!'; ?>