User:Hilst/Scripts/sectionLinks.js
Appearance
< User:Hilst | Scripts
(Redirected from User:MaterialWorks/Scripts/sectionLinks.js)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 () {
function convertLinks() {
const page = new Morebits.wiki.page( mw.config.get( 'wgPageName' ), 'Converting section links' );
page.load( function ( page ) {
const pageText = page.getPageText();
// Extract whatever is inside brackets and has a link to a section
// and replace the brackets with the template.
const newText = pageText.replace( /\[\[([^|\]<>[\]{}]*#[^|\]<>[\]{}]*)\]\]/gu, '{{Section link|$1}}' );
if ( pageText !== newText ) {
page.setPageText( newText );
page.setEditSummary( 'Converted unformatted section links via [[User:Hilst/Scripts/sectionLinks|script]].' );
page.save();
mw.notify( 'All section links were converted. 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: 'info', title: 'sectionLinks' } );
}
} );
}
if ( mw.config.get( 'wgNamespaceNumber' ) % 2 === 0 ) { // Don't activate script in talk pages
const link = mw.util.addPortletLink( 'p-cactions', '#', 'Convert section links', 't-convert-section-links' );
link.addEventListener( 'click', convertLinks );
}
} );
// </nowiki>