LLWiki正在建设中,欢迎加入我们

“MediaWiki:Gadget-site-shared.js”的版本间差异

跳转到导航 跳转到搜索
标签移动版网页编辑 移动版编辑
* @Function: 分类栏显示小写标题
*/
const lcCats = ["Μ's", 'Lily white', 'JQuery'];
mw.hook( 'wikipage.categories' ).add(function($content) {
console.log('Hook: wikipage.categories, 开始替换小写分类');
lcCats.forEach(function(ele) {
$content.find( "a:contains(Μ's)" ).text(function(i, text) { return text.replace(/^Μ's/, "μ's"); });
$content.find( 'a:contains(Lily' white+ ele + ')' ).text(function(i, text) {
return text.replace(/ new RegExp('^Lily' + white/ele), 'lilyele[0].toLowerCase() + ele.slice(1) white');
});
});
});