User:Hilst/Scripts/sectionLinks.js
Appearance
< User:Hilst | Scripts
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:Hilst/Scripts/sectionLinks. |
//<nowiki>
$.when(
mw.loader.using([ 'mediawiki.api', 'ext.gadget.morebits' ]),
$.ready
).then(function() {
var link = mw.util.addPortletLink('p-cactions', '#', 'Convert section links', 't-convert-section-links');
link.addEventListener("click", convert);
const advert = 'via [[User:MaterialWorks/Scripts/sectionLinks|script]].';
function convert() {
var page = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Converting section links');
page.load(function(page) {
var pageText = page.getPageText();
// Extract whatever is inside brackets and has a link to a section
// and replace the brackets with the template
var newText = pageText.replace(/\[\[([\w\s:\/]+#[\w\s:\/]+)\]\]/g, '{{Section link|$1}}');
// This second replace is for links to a section in the current page
newText = newText.replace(/\[\[[.]*#([\w\s:\/]+)\]\]/g, '{{Section link||$1}}');
if (pageText !== newText) {
page.setPageText(newText);
page.setEditSummary('Converted unformatted section links ' + advert);
page.save();
mw.notify('All sections links were reformatted. Reloading page...', { type: 'success', title: 'sectionLinks' });
// This timeout ensures the edit went through before reloading the page
setTimeout(function(){ location.reload() }, 2000);
} else {
mw.notify('No convertible section links found!', { type: 'error', title: 'sectionLinks' });
}
});
}
});
//</nowiki>