User:The Transhumanist/OutlineMain2LI.js
Appearance
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. |
Documentation for this user script can be added at User:The Transhumanist/OutlineMain2LI. |
// <syntaxhighlight lang="javascript">
/*
(Script under development - not yet functional)
Main2LI = Convert main links to list items
When completed,
this script will process each main link on the page, letting the user decide
what the script should do with them one-by-one. The choices will be to convert
it to a suggested list item, delete it, or skip it.
Brief comments are provided within the sourcecode below. For extensive explanatory
notes on what the source code does and how it works, see the Script's workshop on
the talk page.
*/
// Start off with a bodyguard function to reserve mw and $ (see Explanatory notes on talk page).
( function ( mw, $ ) {
// we can now rely on mw and $ within the safety of our “bodyguard” function, to mean
// "mediawiki" and "jQuery", respectively
// ============== ready() event listener/handler ==============
// below is jQuery short-hand for $(document).ready(function() { ... });
// it makes the rest of the script wait until the page's DOM is loaded and ready
$(function() {
// During testing, so that alerts don't pop up all the time,
// Run this script only if "Outline " is in the page title
if (document.title.indexOf("Outline ") != -1) {
// BODY OF PROGRAM GOES HERE
}
} );
}( mediaWiki, jQuery ) );
// </syntaxhighlight>