Megjegyzés: közzététel után frissítened kell a böngésződ gyorsítótárát, hogy lásd a változásokat.

  • Firefox / Safari: tartsd lenyomva a Shift gombot és kattints a Frissítés gombra a címsorban, vagy használd a Ctrl–F5 vagy Ctrl–R (Macen ⌘–R) billentyűkombinációt
  • Google Chrome: használd a Ctrl–Shift–R (Macen ⌘–Shift–R) billentyűkombinációt
  • Internet Explorer / Edge: tartsd nyomva a Ctrl-t, és kattints a Frissítés gombra, vagy nyomj Ctrl–F5-öt
  • Opera: Nyomj Ctrl–F5-öt
// Extra buttons for the edit toolbar, based on http://hu.wikipedia.org/w/index.php?title=MediaWiki:Common.js&oldid=5090124
  function InsertPrivatButtonsToToolBar() {
    //Span button
    mwCustomEditButtons[mwCustomEditButtons.length] = {
      "imageFile": "http://upload.wikimedia.org/wikipedia/commons/5/56/Button_big.png",
      "speedTip": "times",
      "tagOpen": "{{times+}}",
      "tagClose": "{{times-}}",
      "sampleText": "טקסט" }
    //rtl button
    mwCustomEditButtons[mwCustomEditButtons.length] = {
      "imageFile": "http://upload.wikimedia.org/wikipedia/commons/a/ac/Button_redir_rtl.png",
      "speedTip": "rtl",
      "tagOpen": "{{rtl+}}",
      "tagClose": "{{rtl-}}",
      "sampleText": "טקסט" }
    mwCustomEditButtons[mwCustomEditButtons.length] = {
      "imageFile": "http://upload.wikimedia.org/wikipedia/commons/7/72/Button_span_2.png",
      "speedTip": "span",
      "tagOpen": "<span style=\"\">",
      "tagClose": "</span>",
      "sampleText": "szöveg" }
  }
  addOnloadHook(InsertPrivatButtonsToToolBar);
  mw.loader.load('//commons.wikimedia.org/wiki/MediaWiki:Gadget-BiDiEditing.js');
function gomb() {
if (document.getElementById('toolbar')) {
div = document.createElement('div') ;
button1 = document.createElement('a');
button1.onclick = Function("insertTags('–','','')");
button1.href = "#"
button1.title = " Nagykötőjel ";
button1.innerHTML = " Nagykötőjel " ;
div.appendChild(button1);
button2 = document.createElement('a');
button2.onclick = Function("insertTags('<big>','</big>','')");
button2.href = "#"
button2.title = " Nagyobb betűméret ";
button2.innerHTML = " Nagyobb betűméret " ;
div.appendChild(button2);
document.getElementById('toolbar').appendChild(div);
}
}
addOnloadHook(gomb) ;

//WatchCat
importScript("User:Winston/WatchCat.js");
var allowedSpecialCharacterTypes = ['Alap', 'HTML', 'Wikikód', 'Hivatkozások', 'Sablonok', 'Üzenetek', 'Héber', 'Jiddis', 'Görög (ó)', 'Görög (új)', 'Átírás, ókori', 'Arab', 'Latin', 'IPA', 'Matematika', 'Cirill'];