User:Nbdd0121/tools/wikihighlight-bootstrap.js
外观
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
if(['edit', 'submit'].indexOf(mw.config.get('wgAction')) !== -1 && mw.config.get("wgPageContentModel") === 'wikitext') {
mw.loader.load('https://zh.moegirl.org/index.php?title=User:Nbdd0121/tools/codemirror.js&action=raw&ctype=text/javascript');
mw.loader.load('https://zh.moegirl.org/index.php?title=User:Nbdd0121/tools/codemirror.css&action=raw&ctype=text/css', 'text/css');
setTimeout(checkVariable, 100);
}
function checkVariable() {
if(typeof CodeMirror === 'undefined') {
setTimeout(checkVariable, 100);
return;
}
mw.loader.load('https://zh.moegirl.org/index.php?title=User:Nbdd0121/tools/wikihighlight.js&action=raw&ctype=text/javascript');
mw.loader.load('https://zh.moegirl.org/index.php?title=User:Nbdd0121/tools/wikihighlight.css&action=raw&ctype=text/css', 'text/css');
}