אונטערשייד צווישן ווערסיעס פון "באַניצער:שווערמער/common.js"

ע"פ רצונו
ק (הגהה)
(ע"פ רצונו)
שורה 104: שורה 104:
}
}
importScript('באַניצער:צמא לדעת/sametab.js');
importScript('באַניצער:צמא לדעת/sametab.js');
// אין פנים, שריי נישט הויך ווען א הערה פירט צו א "דארט"
$('.mw-parser-output sup a').each(function() {
  var text = $(this).text();
  // Check if the text follows the format '[1.2]'
  if (/^\[\d+\.\d+\]$/.test(text)) {
    var modifiedText = text.replace(/\.\d+/, ''); // Remove the dot and second number
    $(this).text(modifiedText);
  }
});