_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Mainframe98/common.js

User:Mainframe98/common.js is a topic that has captured the attention of millions of people around the world. With its relevance in today's society, it is crucial to understand its impact and importance in different aspects of daily life. From its influence on culture to its role in the global economy, User:Mainframe98/common.js has proven to be a topic of great interest to people of all ages and backgrounds. This article will explore various perspectives on User:Mainframe98/common.js, offering readers a comprehensive and detailed view of its relevance in today's world.
mw.loader.load( '//en.wikipedia.org/w/index.php?title=User:Lenore/autolink.js&action=raw&ctype=text/javascript' );

// Mark all pages on Special:Shortpages that are candidates for (speedy) (un)deletion, stubs, set indices or redirects to wiktionary.
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Shortpages' ) {
	mw.loader.using(  ).then( function() {
		var api = new mw.Api();

		function markLogicalShortPages( continueParams ) {
			var requestParameters = {
				action: 'query',
				format: 'json',
				prop: 'categories',
				generator: 'querypage',
				formatversion: 'latest',
				clcategories: [
					'Category:Candidates for speedy deletion',
					'Category:Candidates for undeletion',
					'Category:All set index articles',
					'Category:All stub articles',
					'Category:All articles proposed for deletion',
					'Category:Redirects to Wiktionary',
					'Category:Redirects to Wikispecies',
					'Category:Redirects to Wikimedia Commons',
					'Category:Wikipedia soft redirects'
				],
				gqppage: 'Shortpages',
				gqplimit: 50,
				maxlag: 5
			};

			for ( var continueParameter in continueParams ) {
				requestParameters = continueParams;
			}

			api.get( requestParameters ).done( function ( data ) {
				if ( data.error ) {
					console.log( 'Special:Shortpages query failed.', data.error );
					return;
				} else if ( data.batchcomplete !== true && data.continue ) {
					markLogicalShortPages( data.continue );
				}

				for ( var i = 0; i < data.query.pages.length; i++ ) {
					var page = data.query.pages;

					if ( !page.categories ) {
						continue;
					}

					var url = mw.Title.makeTitle( page.ns, page.title ).getUrl();

					$( 'a' ).css( {
						'text-decoration': 'line-through'
					} );
				}
			} );
		}

		markLogicalShortPages( {} );
	} );
}