MediaWiki:Common.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').then(function () {
const title = document.querySelector('.mw-page-title-main');
if (!title) return;
// Text des Titels holen
const text = title.textContent;
const index = text.indexOf(':');
// Wenn kein Doppelpunkt vorhanden, nichts tun
if (index === -1) return;
// Linken und rechten Teil trennen
const left = text.slice(0, index + 1).trim();
const right = text.slice(index + 1).trim();
// Durch <br> ersetzen
title.innerHTML = `${left}<br>${right}`;
});