User:Jeeputer/highlightPiped.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | This user script seems to have a documentation page at User:Jeeputer/highlightPiped. |
$(function () {
var links = $('#mw-content-text a');
for (var i = 0; i < links.length; i++) {
var link = $(links[i]);
var color = window.pipeHighlighterCustomColor || '#B3446C';
// Check if link is piped
if (link.text() === link.attr('title')) {
// Not piped, so continue the loop
continue;
} else {
// Piped, so check if it's a redirect or disambiguation link
if (link.hasClass('mw-redirect') && link.css('color') === 'rgb(0, 102, 0)') {
// Is a colored redirect link, so prepend a colored pipe
link.prepend('<span style="color: ' + color + '; font-weight: bold">|</span>');
} else if (link.hasClass('mw-disambig') && link.css('color') === 'rgb(241, 118, 0)') {
// Is a colored disambig link, so prepend a pipe
link.prepend('<span style="color: ' + color + '; font-weight: bold">|</span>');
} else {
// Is not a redirect nor a disambig link,
// Or is a redirect or a disambig link without a custom color
// This is intended for compatibility with other link highlighing scripts/gadgets
link.css('color', color);
}
}
}
});