User:The Transhumanist/ViewAsOutline-Glossary.js

Nowadays, User:The Transhumanist/ViewAsOutline-Glossary.js is a topic that has gained great relevance in today's society. People are increasingly interested in exploring and understanding the impact User:The Transhumanist/ViewAsOutline-Glossary.js has on their daily lives. Whether from a personal, professional or social point of view, User:The Transhumanist/ViewAsOutline-Glossary.js has become a fundamental element that we cannot ignore. That is why in this article we want to delve into the topic of User:The Transhumanist/ViewAsOutline-Glossary.js, exploring its different dimensions and trying to shed light on its importance in the modern world. We will delve into its origins, its evolution over time and how it has influenced the way we live and relate. Without a doubt, User:The Transhumanist/ViewAsOutline-Glossary.js is a fascinating topic that deserves to be analyzed in depth.
// <syntaxhighlight lang="javascript">

/*

(Script is under development - not yet functional)

ViewAsOutline-Glossary.js

What it does:

This script removes the bullets and then inserts wikicode formatting 
(asterisks and double square brackets) for the list items on  
glossary pages, and the h2 headings, so that the links can be easily copied and 
pasted into list and outline pages being edited.

Brief comments are provided within the source code below. For extensive explanatory 
notes on what the source code does and how it works, see the Script's workshop on 
the talk page. (Not ready yet)

*/

// ============== Set up ==============

// Start off with a bodyguard function to reserve the aliases mw and $
( 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() {
        
		// ============== activation filters ==============
        // Only activate on Vector skin
        if ( mw.config.get( 'skin' ) === 'vector' ) {

	        // Run this script only if "Glossary of" is in the page title
			if (document.title.indexOf("Glossary of") != -1) {

				// End of set up
			
        	    // =================== Prep work =====================
				
				// Variable declarations, etc., go here

            	// ================= Core program ================= 

                $( function() {

					// BODY OF PROGRAM
					// Make the headings go bye bye
					$( ".mw-editsection" ).remove();
					$( ".mw-headline" ).remove();
					$( "h2" ).remove();

					// Add a bullet to each of the dt entries
					$( "dt" ).prepend( "* " );
					// $( "dt" ).append( " – " );
	
					// Add ] to links in the dt entries
					$( "dt" ).find( "a" ).prepend( "[[" );
					$( "dt" ).find( "a" ).append( "]]" );

					// Strip out the newlines between dt and dd elements
					// Newlines follow block elements, and so we must go inline...
					// Thanks to  for the following 2-line solution
					$('dt').css('display','inline').after(' – ');
					$('dd').css({'display':'inline', 'margin-left':'0'}).after('<br>');

					// Make the dd elements targettable by adding a class to them
					$( ".mw-body-content" ).find( "dd" ).addClass( "gloss-dd" );

	        		// Apply annotation grammar (strip out leading A, An, and The)
					var dds = document.getElementsByClassName( "gloss-dd" );
					var i;
					for (i = 0; i < dds.length; i++) {
					    dds.innerHTML = dds.innerHTML.replace(/^A /,'');
					    dds.innerHTML = dds.innerHTML.replace(/^An /,'');
					    dds.innerHTML = dds.innerHTML.replace(/^The /,'');
					} 

	        		// More anno grammar: change the first letter of each dd element to lower case
					// First, wrap the first letter in classed span tags
					dds = document.getElementsByClassName( "gloss-dd" );
					var j;
					for (j = 0; j < dds.length; j++) {
					    dds.innerHTML = dds.innerHTML.replace(/^()/,'<span class="firstL">$1</span>');
					} 
					// Then, change it to lower case
					$('.firstL').css('text-transform','lowercase');

				} );
			}
        }
    } );
}( mediaWiki, jQuery ) );

// </syntaxhighlight>