dev

HighlightCode, Fandom'un/MediaWiki'nin sözdizimi vurgusunu (görüntülerken) highlight.js ile değiştirir. Bunun MediaWiki:ImportJS üzerinde çalışmadığını, ancak bunun yerine ImportJS-Plus kullanılabileceğini unutmayın.

Installation

Example

//JS from https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics#a_user_name_of_null
function setUserName() {
  let myName = prompt('Please enter your name.');
  if(!myName) {
    setUserName();
  } else {
    localStorage.setItem('name', myName);
    myHeading.textContent = 'Mozilla is cool, ' + myName;
  }
}