更改 MediaWiki 中 SyntaxHighlight GeSHi 格式化代码的字体大小
我的代码片段的字体大小相对于 Wiki 的默认字体大小太小,这使得它们难以阅读(请参阅下面的示例)。我可以做些什么来改变它吗?
示例:
生成上述内容的代码是:
==== Histograms ====
This is the code to compute the histogram:
<source lang="matlab">
nEls = numel(unique_vals);
edges = zeros(nEls+2,1);
</source>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MediaWiki v1.19.23/24 和 geshi 1.0.8.11/12:
将
Mediawiki:Geshi.css
文件编辑为:这适用于内联 (
) 和普通 div (
MediaWiki v1.19.23/24 with geshi 1.0.8.11/12:
Edit the
Mediawiki:Geshi.css
file to be:This will work for both the inline (
<source lang="XXX" console="none">CODE</source>
) and for the normal divs (<source lang="XXX">CODE</source>
). Thesource
is now preferred to be replaced withsyntaxhighlight
.编辑 MediaWiki:Geshi.css。
例子:
Edit the MediaWiki:Geshi.css.
Example:
编辑 SyntaxHighlight_GeSHi.class.php
将字体大小添加到以下行
edit your SyntaxHighlight_GeSHi.class.php
add font-size to following line
事实证明这是 MediaWiki 扩展中的一个错误。它在 https://bugzilla.wikimedia.org/show_bug.cgi 的 bug 跟踪器中引用?id=26204
我们可以对其进行永久修复,我们会请其他人来正确修复它。
Turns out this is a bug in the MediaWiki extension. It is referenced in the bug tracker at https://bugzilla.wikimedia.org/show_bug.cgi?id=26204
We can get a permanent fix in it, will poke some other peoples to get it properly fixed.