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

MediaWiki:Guidedtour-tour-MoreMarkupEducator.js

In today's article we are going to talk about MediaWiki:Guidedtour-tour-MoreMarkupEducator.js, a topic that has undoubtedly generated interest and controversy in recent times. MediaWiki:Guidedtour-tour-MoreMarkupEducator.js is a topic that has captured the attention of experts and the general public, since it impacts different aspects of our daily lives. Throughout this article, we will explore the different facets of MediaWiki:Guidedtour-tour-MoreMarkupEducator.js, from its history and evolution to its impact on today's society. Additionally, we will examine possible solutions and alternatives to address the challenges associated with MediaWiki:Guidedtour-tour-MoreMarkupEducator.js. Lastly, we will look at how MediaWiki:Guidedtour-tour-MoreMarkupEducator.js has influenced the world today and what we can expect in the future.
// Guided Tour for learning wikicode by making a series of edits in a user sandbox, as an interactive interlude in Wikipedia:Training/For_educators
 
( function ( window, document, $, mw, gt ) {
 
//automatic api:edit function to send yourself messages
function sendMessage( targetPage, msgPage, linkTo ) {
	var api = new mw.Api();
	api.get( {
		'action' : 'query',
		'titles' : msgPage,
		'prop'   : 'revisions',
		'meta'   : 'tokens',
		'type'   : 'csrf',
		'rvprop' : 'content',
		'indexpageids' : 1
	} ).done( function (result) {
		result = result.query;
		var page = result.pages];
		var text = page.revisions;
		api.post( {
			'action' : 'edit',
			'title' : targetPage,
			'appendtext' : "\n" + text,
			'summary' : 'automatic post as part of the training for educators',
			'token' : result.tokens.csrftoken
		} ).done( function () {
			window.location.href = linkTo;
		} );
	} );
}

// Fail gracefully post-save but not postedit
var postEditButtons = ;
if ( mw.config.get( 'wgAction' ) === 'view' && !gt.isPostEdit() ) {
        postEditButtons.push( {
                name: 'Click here to go back and make an edit',
                onclick: function() {
                        window.location.href = new mw.Uri().extend( { action: 'edit' } ).toString();
                }
        } );
}
 
// Fail gracefully post-save but not postedit for visual editor
var postEditButtonsVisual = ;
if ( mw.config.get( 'wgAction' ) === 'view' && !gt.isPostEdit() ) {
        postEditButtonsVisual.push( {
                name: 'Go Back',
                onclick: function() {
                        window.location.href = window.location.href +
"&veaction=edit";
                }
        } );
}
 
gt.defineTour( {
        name: 'MoreMarkupEducator',
        shouldLog: true,
        steps: [ {
                //1
                title: 'Let\'s try some more formatting.',
                description: '',
                onShow: gt.getPageAsDescription,
                overlay: true,
                closeOnClickOutside: false,
	            buttons: [ {
                        name: 'Go to your sandbox',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User:' + mw.config.get( 'wgUserName' ) + '/more_markup', 'Project:Training/tour/more_markup_preload' , mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=2'); }
                } ],
                allowAutomaticOkay: false
 
        },  {
                //2
                title: 'Fix up this raw text.',
                description: 'Project:Training/tour/more_markup2',
                onShow: gt.getPageAsDescription,
                attachTo: '#content.mw-body',
                position: 'bottom',
                overlay: false,
                closeOnClickOutside: false,
		        buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Project:Training/For_educators/More_markup' ) + '?tour=MoreMarkupEducator&step=1'          
                } , {
		        	    name: 'Okay!',
                        action: 'next',
                } ],
                allowAutomaticOkay: false
 
        },  {
                //3
                title: 'Click Edit',
                description: '',
                attachTo: '#ca-edit',
                position: 'bottom',
                onShow: gt.getPageAsDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=2'          
                } ],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }
 
        },  {
                //4
                title: 'First up, italic text.',
                description: 'Project:Training/tour/more_markup4',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=3'          
                } , {
                	    name: 'I added the italic text markup.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //5
                title: 'Next, section headers.',
                description: 'Project:Training/tour/more_markup5',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=4&action=edit'          
                } , {
                	    name: 'I added the section header markup.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //6
                title: 'Now, an external link.',
                description: 'Project:Training/tour/more_markup6',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=5&action=edit'          
                } , {
                	    name: 'I added the external link.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //7
                title: 'Next, a bulleted list.',
                description: 'Project:Training/tour/more_markup7',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=6&action=edit'          
                } , {
                	    name: 'I added the markup for bullet items.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //8
                title: 'Similarly, a numbered list.',
                description: 'Project:Training/tour/more_markup8',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=7&action=edit'          
                } , {
                	    name: 'I added the numbered list markup.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //9
                title: 'Now for an image.',
                description: 'Project:Training/tour/more_markup9',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=8&action=edit'          
                } , {
                	    name: 'I added the image code.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //10
                title: 'Next, a template.',
                description: 'Project:Training/tour/more_markup10',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=9&action=edit'          
                } , {
                	    name: 'I added the template.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //11
                title: 'Finally, a signature.',
                description: 'Project:Training/tour/more_markup11',
                onShow: gt.getPageAsDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomLeft',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=10&action=edit'          
                } , {
                	    name: 'I added the signature code.',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
 
},  {
                //12
                title: 'Add an edit summary, and Save',
                description: '',
	            attachTo: '#wpSave',
                position: 'bottom',
                autoFocus: 'yes',
                onShow: gt.getPageAsDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<small>←</small>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=11&action=edit'          
                } ],
                shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons
                
} , {
                //13
                title: 'Did it work?',
                description: 'Project:Training/tour/more_markup13',
                onShow: gt.getPageAsDescription,
                overlay: false,
                attachTo: '#ca-edit',
                position: 'bottom',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<small>←</small> I want to try again.',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/more_markup' ) + '?tour=MoreMarkupEducator&step=4&action=edit'
                	} , {
                		name: 'It worked!',
                		action: 'externalLink',
                		url: mw.util.getUrl( 'Project:Training/For educators/Talk pages') + '?tour=MoreMarkupEducator&step=14'
                } ],
                allowAutomaticOkay: false
 
} , {
                //14
                title: 'Nice work!',
                description: 'Project:Training/tour/more_markup14',
                onShow: gt.getPageAsDescription,
                overlay: false,
                closeOnClickOutside: false,
	            buttons: [ {
	            	    name: 'Bye!',
                        action: 'end'
                } ],
                allowAutomaticOkay: false
 
}]
 
} );
 
} (window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ) ;