From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

/*** Find Sources ***/



// Add {{Find sources mainspace}} below the title of articles you view

// Documentation at [[en:w:User:BrandonXLF/FindSources]]

// By [[en:w:User:BrandonXLF]]



$.when(mw.loader.using('mediawiki.api'), $.ready).then(function() {

	if (mw.config.get('wgIsMainPage') || mw.config.get('wgNamespaceNumber') !== 0) return;



	(new mw.Api()).parse('{{Template:Find_sources_mainspace}}', {title: mw.config.get('wgPageName')}).done(function(e) {

		$('#siteSub').after('<div style="font-size:92%;">' + $(e).find('p').first().html().replace(/<i>(.*?)<\/i>/g, '<span>$1</span>') + '</div>');

	});

});