项目页面:http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi
通过svn下载后,根据提示进行安装即可。
添加下面代码的内容到你 Wiki 的配置文件中。Add this line to the end of your LocalSettings.php:
require_once("$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php");
最后为代码的四周添加虚线边框
在\wiki\skins\common\shared.css中最后加入div.mw-geshi {
background-color: #F9F9F9;
border: 1px dashed #2F6FAB;
color: black;
line-height: 1.3em;
padding: 1em;
}