Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/**
 * TemplateScript adds configurable templates and scripts to the sidebar, and adds an example regex editor.
 * @see https://meta.wikimedia.org/wiki/TemplateScript
 * @update-token [[File:pathoschild/templatescript.js]]
 */
// <nowiki>
$.ajax('//tools-static.wmflabs.org/meta/scripts/pathoschild.templatescript.js', { dataType:'script', cache:true }).then(function() {
	pathoschild.TemplateScript.add([
		{ name:'header', template:'{{header\n | title    =\n | author   =\n | section  =\n | previous =\n | next     =\n | notes    =\n}}' },
		{ name:'author', template:'{{author\n |name           =\n |last_initial   =\n |dates          =\n |description    =\n |image          =\n |wikipedia_link =\n |wikiquote_link =\n |commons_link   =\n}}' },
		{ name:'featured talk', template:'{{featured talk\n | month   = {{subst:CURRENTMONTH}}\n | year    = {{subst:CURRENTYEAR}}\n | archive = {{subst:CURRENTYEAR}}/{{subst:CURRENTMONTH}}\n}}' },
		{ name:'textinfo', template:'{{textinfo\n| edition      =\n| source       =\n| contributors =\n| progress     =\n| notes        =\n| proofreaders =\n}}' },
		{ name:'featured', template:'[[WS:FT|Featured text]] (see the [[WS:PP|protection policy]])', forActions:'protect' },
		
		{ name:'standardised', template:'[[WS:STYLE|Standardised]]', forActions:'move' },
		
		{ name:'Copyvio discussion', template:'[[WS:COPYVIO|Possible copyright violation]]', forActions:'delete' },
		{ name:'Proposed', template:'[[WS:DEL|Proposed deletion]]', forActions:'delete' },
		{ name:'G1 no meaningful content', template:'[[WS:CSD|Criteria for speedy deletion]] G1 ("No meaningful content or history.")', forActions:'delete' },
		{ name:'G2 recreation', template:'[[WS:CSD|Criteria for speedy deletion]] G2 ("Reposted content previously deleted...")', forActions:'delete' },
		{ name:'G3 banned user', template:'[[WS:CSD|Criteria for speedy deletion]] G3 ("content created and edited solely by a banned user after they were banned...")', forActions:'delete' },
		{ name:'G4 redundant', template:'[[WS:CSD|Criteria for speedy deletion]] G4 ("Two versions of the same text on different pages...")', forActions:'delete' },
		{ name:'G5 beyond scope', template:'[[WS:CSD|Criteria for speedy deletion]] G5 ("...clearly lies outside the [[WS:WWI|scope of Wikisource]]...")', forActions:'delete' },
		{ name:'G6 copyvio', template:'[[WS:CSD|Criteria for speedy deletion]] G6 ("...clear and proven copyright violation...")', forActions:'delete' },
		{ name:'G6 re-copyvio', template:'[[WS:CSD|Criteria for speedy deletion]] G6 ("...content previously deleted as a copyright violation...")', forActions:'delete' },
		{ name:'G6 copyvio author', template:'[[WS:CSD|Criteria for speedy deletion]] G6 ("...author pages for authors whose works are all copyrighted...")', forActions:'delete' },
		{ name:'G7 author\'s request', template:'[[WS:CSD|Criteria for speedy deletion]] G7 ("Deletion per request of the author...")', forActions:'delete' },
		{ name:'A1 transwikied', template:'[[WS:CSD|Criteria for speedy deletion]] A1 ("Articles [[m:transwiki|transwikied]] to another project...")', forActions:'delete' },
		{ name:'A1 transwikied (commons)', template:'[[WS:CSD|Criteria for speedy deletion]] A1 ("...images uploaded to the [[commons:|Wikimedia commons]] with the original contributor noted...")', forActions:'delete' },
		{ name:'A2 non-notable', template:'[[WS:CSD|Criteria for speedy deletion]] A2 ("...not significantly peer-reviewed or previously published in a significant edition or forum.")', forActions:'delete' },
		{ name:'A3 no authorship info', template:'[[WS:CSD|Criteria for speedy deletion]] A3 ("Works without authorship information...")', forActions:'delete' },
		{ name:'M1 trivial', template:'[[WS:CSD|Criteria for speedy deletion]] M1 ("...deletion as part of a page move or history merge, as long as the action requiring the deletion is uncontroversial.")', forActions:'delete' },
		{ name:'M2 redirect (new)', template:'[[WS:CSD|Criteria for speedy deletion]] M2 ("Unneeded redirects from page titles created within the last week...")', forActions:'delete' },
		{ name:'M2 redirect (old)', template:'[[WS:CSD|Criteria for speedy deletion]] M2 ("...[unneeded] redirects tagged with {{subst:dated soft redirect|"[[new title]]"}} for at least two months.")', forActions:'delete' },
		{ name:'M2 redirect (broken)', template:'[[WS:CSD|Criteria for speedy deletion]] M2 ("...Redirects to inexistant pages...)"', forActions:'delete' },
		{ name:'M3 redirect (article to other ns)', template:'[[WS:CSD|Criteria for speedy deletion]] M3 ("Internamespace redirects from the article namespace to any other namespace.")', forActions:'delete' },
		{ name:'M4 talk page', template:'[[WS:CSD|Criteria for speedy deletion]] M4 ("Unneeded talk: a discussion page for deleted or inexistant content.")', forActions:'delete' }
	]);
});
// </nowiki>