Note: You may have to bypass your browser’s cache to see the changes. In addition, after saving a sitewide CSS file such as MediaWiki:Common.css, it will take 5-10 minutes before the changes take effect, even if you clear your cache.

  • Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
  • Konqueror and Chrome: click Reload or press F5;
  • Opera: clear the cache in Tools → Preferences;
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

This JavaScript is executed for Theknightwho on every page load.


importScript("User:Erutuon/scripts/addAutoCat.js");
importScript("User:Erutuon/scripts/reconstructedCategories.js");
importScript("User:Theknightwho/scripts/UCAHeaders.js");

$("h1[data-source],h2[data-source],h3[data-source],h4[data-source],h5[data-source],h6[data-source]").append(function() {
	var source = $(this).data("source"),
		section = $(this).data("section"),
		title = $(this).text(),
		$editsection = $("<span>").attr("class", "mw-editsection"),
		$open = $("<span>").attr("class", "mw-editsection-bracket").text("["),
		$close = $("<span>").attr("class", "mw-editsection-bracket").text("]"),
		$link = $("<a>").attr("title", "Edit section: " + title)
						.attr("href", "/w/index.php?title=" + source + "&action=edit&section=" + section)
						.text("edit");
	$editsection.append($open).append($link).append($close);
	return $editsection;
});