Diferencia entre revisiones de «Usuario:King of Herdaz/common.js»

De La Coppermind
Ir a la navegación Ir a la búsqueda
m
m
 
(No se muestran 156 ediciones intermedias del mismo usuario)
Línea 10: Línea 10:
 
/* Your code goes here */
 
/* Your code goes here */
   
  +
//removing original buttons I don't want
//add new section to editing toolbar
 
  +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
  +
//Remove default references button
'sections': {
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
'snippets': {
 
'type': 'booklet',
+
'section': 'main',
'label': 'Useful Stuff',
+
'group': 'insert',
'pages': {
+
'tool': 'reference'
  +
});
//page of art stuff
 
  +
'section-art': {
 
  +
//remove bulleted list button
'label': 'Art stuff',
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
'layout': 'characters',
 
'characters': [
+
'section': 'advanced',
{
+
'group': 'format',
'action': {
+
'tool': 'ulist'
  +
});
'type': 'encapsulate',
 
  +
'options': {
 
  +
//remove numbered list button
'pre': '{'+'{artist' + '\n' + '|image=' + '\n' + '|alias=' + '\n' + '|fb=' + '\n' + '|reddit=' + '\n' + '|behance=' + '\n' + '|da=' + '\n' + '|ig=' + '\n' + '|as=' + '\n' + '|tumblr=' + '\n' + '|twitter=' + '\n' + '|site=' + '\n' + '|license=all|some|none|official' + '\n' + '|contact=' + '\n' + '|type=fan|interior|cover|multimedia' + '\n' + '|no-notify=y' + '\n' + '}}' + '\n'
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
}
 
},
+
'section': 'advanced',
'label': '{' + '{artist}}'
+
'group': 'format',
},
+
'tool': 'olist'
  +
});
{
 
  +
'action': {
 
  +
//remove <br> button so I can replace it with my own <br/> button
'type': 'encapsulate',
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
'options': {
 
  +
'section': 'advanced',
'pre': '== Official artwork ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Official artwork">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Portraits ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Portraits">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Scenes ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Scenes">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '[' + '[Category:Gallery Subpages]]'
 
}
+
'group': 'format',
},
+
'tool': 'newline'
  +
});
'label': 'Gallery subpage'
 
  +
},
 
  +
//remove table button
{
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
'action': {
 
'type': 'encapsulate',
+
'section': 'advanced',
'options': {
+
'group': 'insert',
  +
'tool': 'table'
'pre': '{' + '{art' + '\n' + '|#artist=' + '\n' + '|series=' + '\n' + '|#source=',
 
  +
});
'post': '\n' + '|type=' + '\n' + '}}'
 
  +
}
 
  +
//remove File button
},
 
  +
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
'label': 'Art infobox'
 
},
+
'section': 'main',
{
+
'group': 'insert',
'action': {
+
'tool': 'file'
  +
});
'type': 'encapsulate',
 
  +
'options': {
 
  +
//Adding various buttons
'pre': '<small><center>by {' + '{a|',
 
'post': '}}</center></small>'
 
}
 
},
 
'label': 'Artist heading'
 
},
 
'{' + '{cat tag|Books|book cover}}',
 
'{' + '{cat tag|Character images}}',
 
'{' + '{cat tag|Art}}',
 
'{' + '{cat tag|Interior art}}',
 
'|official=y' + '\n',
 
'\n' + '|tracer=',
 
'\n' + '|modified=',
 
'\n' + '|book=',
 
'\n' + '|series=',
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '[mailto:',
 
'post': ' Email]'
 
}
 
},
 
'label': 'Email'
 
},
 
'<br style="clear:right;"/>',
 
'<' + 'gallery caption="Gallery" mode="packed" heights=200px>' + '\n',
 
]
 
},
 
//page of other useful stuff
 
'section-tags': {
 
'label': 'Other Stuff',
 
'layout': 'characters',
 
'characters': [
 
'\n' + '{' + '{spoiler|sa4}}',
 
'\n' + '{' + '{update|sa4}}',
 
'\n' + '{' + '{demoted|sa4}}',
 
'{' + '{for|/Gallery|more images}}',
 
'\n' + '{' + '{columns|count=2|',
 
'<br/>',
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{Rosharan date|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{Rosharan date}}'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '<pre>',
 
'post': '</pre>'
 
}
 
},
 
'label': '<pre>'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{cat tag|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{cat tag|}}'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{tag+|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{tag+|}}'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{tag|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{tag|}}'
 
},
 
'{' + '{expand}}',
 
'{' + '{cite}}',
 
'{' + '{delete}}',
 
'{' + '{clarify}}',
 
'{' + '{disputed}}',
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{move|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{move|}}'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{merge|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{merge|}}'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '{' + '{anchor|',
 
'post': '}}'
 
}
 
},
 
'label': '{' + '{anchor|}}'
 
},
 
'{' + '{theory}}',
 
'{' + '{uncanonical}}',
 
'{' + '{copyright}}',
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '<code>',
 
'post': '</code>'
 
}
 
},
 
'label': '<code>'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '<strike>',
 
'post': '</strike>'
 
}
 
},
 
'label': '<strike>'
 
},
 
{
 
'action': {
 
'type': 'encapsulate',
 
'options': {
 
'pre': '<DynamicPageList>' + '\n' + 'mode=ordered' + '\n' + 'category=' + '\n' + 'notcategory=' + '\n' + 'namespace=' + '\n' + 'ordermethod=sortkey' + '\n' + 'order=ascending' + '\n' + '</DynamicPageList>'
 
}
 
},
 
'label': '<dynamicpagelist>'
 
},
 
'{' + '{for|:Category:Residents of {' + '{SUBST:PAGENAME}}|a full list see}}',
 
'{' + '{Special:PrefixIndex/{' + '{FULLPAGENAME}}/|stripprefix=1}}',
 
]
 
},
 
//page of commonly used infobox parameters
 
'section-params': {
 
'label': 'Simple Character Infobox',
 
'layout': 'characters',
 
'characters': [
 
'{' + '{character',
 
'\n' + '|residence=',
 
'\n' + '|profession=',
 
'\n' + '|#profession=',
 
'\n' + '|species=',
 
'\n' + '|abilities=',
 
'\n' + '|ethnicity=',
 
'\n' + '|born=',
 
'\n' + '|died=',
 
'\n' + '|nationality=',
 
'\n' + '|image=',
 
'\n' + '|bonded=',
 
]
 
}
 
}
 
}
 
}
 
});
 
   
// Add category button to the "advanced" section
+
// Adding category button to the "main" section
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
+
section: 'main',
 
group: 'insert',
 
group: 'insert',
 
tools: {
 
tools: {
Línea 259: Línea 76:
 
});
 
});
   
// Add image template button to the "advanced" section
+
// Adding Artist header button for galleries to the "main" section
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
+
section: 'main',
 
group: 'insert',
 
group: 'insert',
 
tools: {
 
tools: {
"category": {
+
"Artist-header": {
  +
label: 'Artist header',
  +
type: 'button',
  +
icon: '//upload.wikimedia.org/wikipedia/commons/3/3a/Button_av-img.png',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '| <small><center>by {' + '{a|',
  +
post: '}}</center></small>'
  +
}
  +
}
  +
}
  +
}
  +
});
  +
  +
// Adding image template button to the "main" section
  +
$('#wpTextbox1').wikiEditor('addToToolbar', {
  +
section: 'main',
  +
group: 'insert',
  +
tools: {
  +
"image": {
 
label: 'Image template',
 
label: 'Image template',
 
type: 'button',
 
type: 'button',
Línea 279: Línea 116:
 
});
 
});
   
// Add Wikipedia link button to the "advanced" section
+
// Adding Wikipedia link button to the "main" section
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
+
section: 'main',
 
group: 'insert',
 
group: 'insert',
 
tools: {
 
tools: {
"category": {
+
"wikipedia": {
 
label: 'Wikipedia',
 
label: 'Wikipedia',
 
type: 'button',
 
type: 'button',
Línea 299: Línea 136:
 
});
 
});
   
// Add signature button to the "advanced" section
+
// Adding <br/> button to the "main" section
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
+
section: 'main',
group: 'format',
+
group: 'insert',
 
tools: {
 
tools: {
"category": {
+
"break": {
label: 'Signature',
+
label: 'Break tag',
 
type: 'button',
 
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/d/d1/Button_mysignature.png',
+
icon: '//upload.wikimedia.org/wikipedia/commons/1/13/Button_enter.png',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '~~' + '~~'
+
pre: '<' + 'br />'
 
}
 
}
 
}
 
}
Línea 318: Línea 155:
 
});
 
});
   
// Add link button to the "advanced" section
+
// Adding link button to the "main" section
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
+
section: 'main',
group: 'format',
+
group: 'insert',
 
tools: {
 
tools: {
"comment": {
+
"link": {
 
label: 'Link',
 
label: 'Link',
 
type: 'button',
 
type: 'button',
Línea 338: Línea 175:
 
});
 
});
   
// Add hidden text button to the "advanced" section
+
// Adding hidden text button to the "main" section
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
+
section: 'main',
group: 'format',
+
group: 'insert',
 
tools: {
 
tools: {
"comment": {
+
"hidden": {
 
label: 'Hidden text',
 
label: 'Hidden text',
 
type: 'button',
 
type: 'button',
Línea 350: Línea 187:
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: "<!-- ",
+
pre: "<!--",
post: " -->"
+
post: "-->"
 
}
 
}
 
}
 
}
Línea 358: Línea 195:
 
});
 
});
   
// Add columns button to the "advanced" section
+
// Adding columns button to the "main" section
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
+
section: 'main',
group: 'format',
+
group: 'insert',
 
tools: {
 
tools: {
"comment": {
+
"columns": {
 
label: 'Columns',
 
label: 'Columns',
 
type: 'button',
 
type: 'button',
Línea 378: Línea 215:
 
});
 
});
   
//Remove default references button
+
// Adding a <code> button to the "main" section
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
+
$('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'main',
+
section: 'main',
'group': 'insert',
+
group: 'insert',
  +
tools: {
'tool': 'reference'
 
  +
"code": {
  +
label: 'Code',
  +
type: 'button',
  +
icon: '//upload.wikimedia.org/wikipedia/commons/2/23/Button_code.png',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<' + 'code>',
  +
post: '</' + 'code>'
  +
}
  +
}
  +
}
  +
}
 
});
 
});
  +
  +
//Adding a bunch of dropdowns to the "advanced" section for easy access
   
 
//Add new references dropdown to the "advanced" section
 
//Add new references dropdown to the "advanced" section
Línea 395: Línea 247:
 
type: 'select',
 
type: 'select',
 
list: {
 
list: {
'book-button': {
+
'book': {
 
label: '{' + '{book ref}}',
 
label: '{' + '{book ref}}',
 
action: {
 
action: {
Línea 405: Línea 257:
 
}
 
}
 
},
 
},
'wob-button': {
+
'wob': {
 
label: '{' + '{wob ref}}',
 
label: '{' + '{wob ref}}',
 
action: {
 
action: {
Línea 415: Línea 267:
 
}
 
}
 
},
 
},
'ref-button': {
+
'ref': {
 
label: '{' + '{ref}}',
 
label: '{' + '{ref}}',
 
action: {
 
action: {
Línea 425: Línea 277:
 
}
 
}
 
},
 
},
'epigraph-button': {
+
'epigraph': {
 
label: '{' + '{epigraph ref}}',
 
label: '{' + '{epigraph ref}}',
 
action: {
 
action: {
Línea 435: Línea 287:
 
}
 
}
 
},
 
},
'au-button': {
+
'au': {
 
label: '{' + '{au ref}}',
 
label: '{' + '{au ref}}',
 
action: {
 
action: {
Línea 445: Línea 297:
 
}
 
}
 
},
 
},
'msh-button': {
+
'msh': {
 
label: '{' + '{msh ref}}',
 
label: '{' + '{msh ref}}',
 
action: {
 
action: {
Línea 455: Línea 307:
 
}
 
}
 
},
 
},
'file-button': {
+
'tes': {
  +
label: '{' + '{tes ref}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{tes ref|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'file': {
 
label: '{' + '{file ref}}',
 
label: '{' + '{file ref}}',
 
action: {
 
action: {
Línea 465: Línea 327:
 
}
 
}
 
},
 
},
'url-button': {
+
'mapref': {
  +
label: '{' + '{map ref}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{map ref|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'url': {
 
label: '{' + '{url ref}}',
 
label: '{' + '{url ref}}',
 
action: {
 
action: {
Línea 475: Línea 347:
 
}
 
}
 
},
 
},
'17s-button': {
+
'17s': {
 
label: '{' + '{17s ref}}',
 
label: '{' + '{17s ref}}',
 
action: {
 
action: {
Línea 499: Línea 371:
 
tools: {
 
tools: {
 
infoboxes: {
 
infoboxes: {
label: 'iboxes',
+
label: 'infoboxes',
 
type: 'select',
 
type: 'select',
 
list: {
 
list: {
'character-button': {
+
'character': {
 
label: '{' + '{character}}',
 
label: '{' + '{character}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{character' + '\n' + '|image=' + '\n' + '|unnamed=y' + '\n' + '|merge-family=y' + '\n' + '|parents=' + '\n' + '|spouse=' + '\n' + '|siblings=' + '\n' + '|children=' + '\n' + '|ancestors=' + '\n' + '|relatives=' + '\n' + '|descendants=' + '\n' + '|born=' + '\n' + '|died=' + '\n' + '|abilities=' + '\n' + '|bonded=' + '\n' + '|titles=' + '\n' + '|aliases=' + '\n' + '|skills=' + '\n' + '|achievements=' + '\n' + '|#profession=' + '\n' + '|profession=' + '\n' + '|occupation=' + '\n' + '|religion=' + '\n' + '|groups=' + '\n' + '|species=' + '\n' + '|era=' + '\n' + '|birthplace=' + '\n' + '|residence=' + '\n' + '|ethnicity=' + '\n' + '|nation=' + '\n' + '|nationality=',
+
pre: '{' + '{character' + '\n' + '|image=' + '\n' + '|unnamed=y' + '\n' + '|merge-family=y' + '\n' + '|parents=' + '\n' + '|spouse=' + '\n' + '|siblings=' + '\n' + '|children=' + '\n' + '|ancestors=' + '\n' + '|relatives=' + '\n' + '|descendants=' + '\n' + '|born=' + '\n' + '|died=' + '\n' + '|abilities=' + '\n' + '|bonded=' + '\n' + '|titles=' + '\n' + '|aliases=' + '\n' + '|skills=' + '\n' + '|achievements=' + '\n' + '|#profession=' + '\n' + '|profession=' + '\n' + '|occupation=' + '\n' + '|religion=' + '\n' + '|groups=' + '\n' + '|species=' + '\n' + '|era=' + '\n' + '|birthplace=' + '\n' + '|residence=' + '\n' + '|ethnicity=' + '\n' + '|nation=' + '\n' + '|nationality='
 
}
 
}
 
}
 
}
 
},
 
},
'architecture-button': {
+
'architecture': {
 
label: '{' + '{architecture}}',
 
label: '{' + '{architecture}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{architecture' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|usage=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation=',
+
pre: '{' + '{architecture' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|usage=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
 
}
 
}
 
}
 
}
 
},
 
},
'business-button': {
+
'business': {
 
label: '{' + '{business}}',
 
label: '{' + '{business}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{business' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|members=' + '\n' + '|services=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|nation=',
+
pre: '{' + '{business' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|members=' + '\n' + '|services=' + '\n' + '|products=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|nation='
 
}
 
}
 
}
 
}
 
},
 
},
'culture-button': {
+
'culture': {
 
label: '{' + '{culture}}',
 
label: '{' + '{culture}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{culture' + '\n' + '|image=' + '\n' + '|related=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|origin=',
+
pre: '{' + '{culture' + '\n' + '|image=' + '\n' + '|related=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|origin='
 
}
 
}
 
}
 
}
 
},
 
},
'event-button': {
+
'event': {
 
label: '{' + '{event}}',
 
label: '{' + '{event}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{event' + '\n' + '|image=' + '\n' + '|partof=' + '\n' + '|date=' + '\n' + '|era=' + '\n' + '|participants=' + '\n' + '|effects=' + '\n' + '|city= / state= / region= / nation=' + '\n' + '|princedom= / dominance=' + '\n' + '|location=',
+
pre: '{' + '{event' + '\n' + '|image=' + '\n' + '|partof=' + '\n' + '|date=' + '\n' + '|era=' + '\n' + '|participants=' + '\n' + '|effects=' + '\n' + '|city= / state= / region= / nation=' + '\n' + '|princedom= / dominance=' + '\n' + '|location='
 
}
 
}
 
}
 
}
 
},
 
},
'food-button': {
+
'food': {
 
label: '{' + '{food}}',
 
label: '{' + '{food}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{food' + '\n' + '|image=' + '\n' + '|ingredients=' + '\n' + '|type=' + '\n' + '|taste=' + '\n' + '|origin=',
+
pre: '{' + '{food' + '\n' + '|image=' + '\n' + '|ingredients=' + '\n' + '|type=' + '\n' + '|taste=' + '\n' + '|origin='
 
}
 
}
 
}
 
}
 
},
 
},
'geography-button': {
+
'geography': {
 
label: '{' + '{geography}}',
 
label: '{' + '{geography}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{geography' + '\n' + '|map= / |image=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|region=',
+
pre: '{' + '{geography' + '\n' + '|map= / |image=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|region='
 
}
 
}
 
}
 
}
 
},
 
},
'group-button': {
+
'group': {
 
label: '{' + '{group}}',
 
label: '{' + '{group}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{group' + '\n' + '|image=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|hq=' + '\n' + '|type=' + '\n' + '|era=',
+
pre: '{' + '{group' + '\n' + '|image=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|hq=' + '\n' + '|type=' + '\n' + '|era='
 
}
 
}
 
}
 
}
 
},
 
},
'item-button': {
+
'item': {
 
label: '{' + '{item}}',
 
label: '{' + '{item}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{item' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|creator= / creators=' + '\n' + '|type=' + '\n' + '|function=',
+
pre: '{' + '{item' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|creator= / creators=' + '\n' + '|type=' + '\n' + '|function='
 
}
 
}
 
}
 
}
 
},
 
},
'lifeform-button': {
+
'lifeform': {
 
label: '{' + '{lifeform}}',
 
label: '{' + '{lifeform}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{lifeform' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|abilities=' + '\n' + '|use=' + '\n' + '|native=' + '\n' + '|sapient=y',
+
pre: '{' + '{lifeform' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|abilities=' + '\n' + '|use=' + '\n' + '|native=' + '\n' + '|sapient=y'
 
}
 
}
 
}
 
}
 
},
 
},
'settlement-button': {
+
'settlement': {
 
label: '{' + '{settlement}}',
 
label: '{' + '{settlement}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{settlement' + '\n' + '|map/image=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation=',
+
pre: '{' + '{settlement' + '\n' + '|map/image=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
 
}
 
}
 
}
 
}
 
},
 
},
'location-button': {
+
'location': {
 
label: '{' + '{location}}',
 
label: '{' + '{location}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{location' + '\n' + '|map/image=' + '\n' + '|capital=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation=',
+
pre: '{' + '{location' + '\n' + '|map/image=' + '\n' + '|capital=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
 
}
 
}
 
}
 
}
 
},
 
},
'literature-button': {
+
'literature': {
 
label: '{' + '{literature}}',
 
label: '{' + '{literature}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{literature' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|author=' + '\n' + '|language=' + '\n' + '|era=',
+
pre: '{' + '{literature' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|author=' + '\n' + '|language=' + '\n' + '|era='
 
}
 
}
 
}
 
}
 
},
 
},
'vehicle-button': {
+
'vehicle': {
 
label: '{' + '{vehicle}}',
 
label: '{' + '{vehicle}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{vehicle' + '\n' + '|image=' + '\n' + '|owner/owners=' + '\n' + '|creator/creators=' + '\n' + '|type=' + '\n' + '|captain=',
+
pre: '{' + '{vehicle' + '\n' + '|image=' + '\n' + '|owner/owners=' + '\n' + '|creator/creators=' + '\n' + '|type=' + '\n' + '|captain='
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
} );
  +
  +
//Add new build-a-box dropdown to the "advanced" section
  +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  +
section: 'advanced',
  +
groups: {
  +
list: {
  +
tools: {
  +
simplecharacterinfobox: {
  +
label: 'build-a-box',
  +
type: 'select',
  +
list: {
  +
'start': {
  +
label: '{' + '{character',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{character'
  +
}
  +
}
  +
},
  +
'residence': {
  +
label: '|residence=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|residence='
  +
}
  +
}
  +
},
  +
'imageparam': {
  +
label: '|image=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|image='
  +
}
  +
}
  +
},
  +
'profession': {
  +
label: '|profession=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|profession='
  +
}
  +
}
  +
},
  +
'#profession': {
  +
label: '|#profession=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|#profession='
  +
}
  +
}
  +
},
  +
'skills': {
  +
label: '|skills=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|skills='
  +
}
  +
}
  +
},
  +
'species': {
  +
label: '|species=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|species='
  +
}
  +
}
  +
},
  +
'abilities': {
  +
label: '|abilities=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|abilities='
  +
}
  +
}
  +
},
  +
'ethnicity': {
  +
label: '|ethnicity=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|ethnicity='
  +
}
  +
}
  +
},
  +
'born': {
  +
label: '|born=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|born='
  +
}
  +
}
  +
},
  +
'died': {
  +
label: '|died=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|died='
  +
}
  +
}
  +
},
  +
'nationality': {
  +
label: '|nationality=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|nationality='
  +
}
  +
}
  +
},
  +
'bonded': {
  +
label: '|bonded=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|bonded='
 
}
 
}
 
}
 
}
Línea 645: Línea 651:
 
type: 'select',
 
type: 'select',
 
list: {
 
list: {
'sa-button': {
+
'sa': {
 
label: 'Stormlight',
 
label: 'Stormlight',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=Roshar' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[The Stormlight Archive]]' + '\n' + '}}',
+
pre: '\n' + '|world=Roshar' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[The Stormlight Archive]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'mbe1-button': {
+
'mbe1': {
 
label: 'MB Era 1',
 
label: 'MB Era 1',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 1]]' + '\n' + '}}',
+
pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 1]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'mbe2-button': {
+
'mbe2': {
 
label: 'MB Era 2',
 
label: 'MB Era 2',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 2]]' + '\n' + '}}',
+
pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 2]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'wb-button': {
+
'wb': {
 
label: 'Warbreaker',
 
label: 'Warbreaker',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=Nalthis' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Warbreaker]]' + '\n' + '}}',
+
pre: '\n' + '|world=Nalthis' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Warbreaker]]' + '\n' + '}}'
  +
}
  +
}
  +
},
  +
'ela': {
  +
label: 'Elantris',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|world=Sel' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Elantris (book)|Elantris]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'alc-button': {
+
'alc': {
 
label: 'Alcatraz',
 
label: 'Alcatraz',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|earth=Alcatraz' + '\n' + '|books=[[Alcatraz Versus the Evil Librarians (series)|Alcatraz Versus the Evil Librarians]]' + '\n' + '}}',
+
pre: '\n' + '|earth=Alcatraz' + '\n' + '|books=[[Alcatraz Versus the Evil Librarians (series)|Alcatraz Versus the Evil Librarians]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'ws-button': {
+
'ws': {
 
label: 'White Sand',
 
label: 'White Sand',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=Taldain' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[White Sand]]' + '\n' + '}}',
+
pre: '\n' + '|world=Taldain' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[White Sand]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
 
},
 
},
'skyward-button': {
+
'skyward': {
 
label: 'Skyward',
 
label: 'Skyward',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '|world=' + '\n' + '|universe=[[Cytoverse]]' + '\n' + '|books=[[Skyward (series)]]' + '\n' + '}}',
+
pre: '\n' + '|world=',
  +
post: '\n' + '|universe=[[Cytoverse]]' + '\n' + '|books=[[Skyward (series)]]' + '\n' + '}}'
 
}
 
}
 
}
 
}
Línea 725: Línea 741:
 
type: 'select',
 
type: 'select',
 
list: {
 
list: {
'notes-button': {
+
'pagename': {
  +
label: '{' + '{SUBST:PAGENAME}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '\'\'\'{' + '{SUBST:PAGENAME}}\'\'\''
  +
}
  +
}
  +
},
  +
'notes': {
 
label: '== Notes ==',
 
label: '== Notes ==',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '== Notes ==',
+
pre: '\n\n' + '== Notes =='
 
}
 
}
 
}
 
}
 
},
 
},
'refsection-button': {
+
'refsection': {
 
label: '<' + 'references/>',
 
label: '<' + 'references/>',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '<' + 'references />',
+
pre: '\n' + '<' + 'references />'
 
}
 
}
 
}
 
}
 
},
 
},
'stub-button': {
+
'stub': {
 
label: '{' + '{stub}}',
 
label: '{' + '{stub}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{stub}}',
+
pre: '\n' + '{' + '{stub}}'
 
}
 
}
 
}
 
}
 
},
 
},
'partial-button': {
+
'partial': {
 
label: '{' + '{partial}}',
 
label: '{' + '{partial}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{partial}}',
+
pre: '\n' + '{' + '{partial}}'
 
}
 
}
 
}
 
}
 
},
 
},
'complete-button': {
+
'complete': {
 
label: '{' + '{complete}}',
 
label: '{' + '{complete}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{complete}}',
+
pre: '\n' + '{' + '{complete}}'
 
}
 
}
 
}
 
}
 
},
 
},
'alcatraz-button': {
+
'alcatraz': {
 
label: '{' + '{Alcatraz}}',
 
label: '{' + '{Alcatraz}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Alcatraz}}',
+
pre: '\n' + '{' + '{Alcatraz}}'
 
}
 
}
 
}
 
}
 
},
 
},
'elantris-button': {
+
'elantris': {
 
label: '{' + '{Elantris}}',
 
label: '{' + '{Elantris}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Elantris}}',
+
pre: '\n' + '{' + '{Elantris}}'
 
}
 
}
 
}
 
}
 
},
 
},
'mbera1-button': {
+
'mbera1': {
 
label: '{' + '{Mistborn|Era 1}}',
 
label: '{' + '{Mistborn|Era 1}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Mistborn|Era 1}}',
+
pre: '\n' + '{' + '{Mistborn|Era 1}}'
 
}
 
}
 
}
 
}
 
},
 
},
'mbera2-button': {
+
'mbera2': {
 
label: '{' + '{Mistborn|Era 2}}',
 
label: '{' + '{Mistborn|Era 2}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Mistborn|Era 2}}',
+
pre: '\n' + '{' + '{Mistborn|Era 2}}'
 
}
 
}
 
}
 
}
 
},
 
},
'reckoners-button': {
+
'reckoners': {
 
label: '{' + '{Reckoners}}',
 
label: '{' + '{Reckoners}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Reckoners}}',
+
pre: '\n' + '{' + '{Reckoners}}'
 
}
 
}
 
}
 
}
 
},
 
},
'sky-button': {
+
'sky': {
 
label: '{' + '{Skyward}}',
 
label: '{' + '{Skyward}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Skyward}}',
+
pre: '\n' + '{' + '{Skyward}}'
 
}
 
}
 
}
 
}
 
},
 
},
'storm-button': {
+
'storm': {
 
label: '{' + '{Stormlight}}',
 
label: '{' + '{Stormlight}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Stormlight}}',
+
pre: '\n' + '{' + '{Stormlight}}'
 
}
 
}
 
}
 
}
 
},
 
},
'warbreaker-button': {
+
'warbreaker': {
 
label: '{' + '{Warbreaker}}',
 
label: '{' + '{Warbreaker}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{Warbreaker}}',
+
pre: '\n' + '{' + '{Warbreaker}}'
 
}
 
}
 
}
 
}
 
},
 
},
'whitesand-button': {
+
'whitesand': {
 
label: '{' + '{White Sand}}',
 
label: '{' + '{White Sand}}',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '\n' + '{' + '{White Sand}}',
+
pre: '\n' + '{' + '{White Sand}}'
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
} );
  +
  +
//Add new art dropdown to the "advanced" section
  +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  +
section: 'advanced',
  +
groups: {
  +
list: {
  +
tools: {
  +
art: {
  +
label: 'art',
  +
type: 'select',
  +
list: {
  +
'artistbox': {
  +
label: '{' + '{artist}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{'+'{artist' + '\n' + '|image=' + '\n' + '|alias=' + '\n' + '|fb=' + '\n' + '|reddit=' + '\n' + '|behance=' + '\n' + '|da=' + '\n' + '|ig=' + '\n' + '|as=' + '\n' + '|tumblr=' + '\n' + '|twitter=' + '\n' + '|site=' + '\n' + '|license=all|some|none|official' + '\n' + '|contact=' + '\n' + '|type=fan|interior|cover|multimedia' + '\n' + '|no-notify=y' + '\n' + '}}' + '\n' + '\n' + '\n' + '== Gallery ==' + '\n'
  +
}
  +
}
  +
},
  +
'gallerysubpage': {
  +
label: 'gallery subpage',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '== Official artwork ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Official artwork">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Portraits ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Portraits">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Scenes ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Scenes">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '[' + '[Category:Gallery Subpages]]'
  +
}
  +
}
  +
},
  +
'artbox': {
  +
label: '{' + '{art}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{art' + '\n' + '|#artist=' + '\n' + '|series=' + '\n' + '|#source=',
  +
post: '\n' + '|type=' + '\n' + '}}'
  +
}
  +
}
  +
},
  +
'artistheading': {
  +
label: 'artist header',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '| <small><center>by {' + '{a|',
  +
post: '}}</center></small>'
  +
}
  +
}
  +
},
  +
'bookcovercat': {
  +
label: '{' + '{cat tag|Books|book cover}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|Books|book cover}}'
  +
}
  +
}
  +
},
  +
'charactercat': {
  +
label: '{' + '{cat tag|Character images}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|Character images}}'
  +
}
  +
}
  +
},
  +
'artcat': {
  +
label: '{' + '{cat tag|Art}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|Art}}'
  +
}
  +
}
  +
},
  +
'interiorartcat': {
  +
label: '{' + '{cat tag|Interior art}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|Interior art}}'
  +
}
  +
}
  +
},
  +
'interiorartcat': {
  +
label: '{' + '{cat tag|Interior art}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|Interior art}}'
  +
}
  +
}
  +
},
  +
'officialart': {
  +
label: '|official=y',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '|official=y' + '\n'
  +
}
  +
}
  +
},
  +
'tracer': {
  +
label: '|tracer=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|tracer='
  +
}
  +
}
  +
},
  +
'modified': {
  +
label: '|modified=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|modified='
  +
}
  +
}
  +
},
  +
'bookparam': {
  +
label: '|book=',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '|book='
  +
}
  +
}
  +
},
  +
'email': {
  +
label: 'Email',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '[mailto:',
  +
post: ' Email]'
  +
}
  +
}
  +
},
  +
'clearright': {
  +
label: 'clear:right',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<br style="clear:right;"/>'
  +
}
  +
}
  +
},
  +
'clearleft': {
  +
label: 'clear:left',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<br style="clear:left;"/>'
  +
}
  +
}
  +
},
  +
'galleryheader': {
  +
label: 'gallery header',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<' + 'gallery caption="Gallery" mode="packed" heights=200px>' + '\n'
  +
}
  +
}
  +
},
  +
'endgallery': {
  +
label: '</gallery>',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '</gallery>'
  +
}
  +
}
  +
},
  +
'metadone': {
  +
label: '{' + '{meta/done}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{meta/done}}'
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
} );
  +
  +
//Add new dropdown of commonly used tags to the "advanced" section
  +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  +
section: 'advanced',
  +
groups: {
  +
list: {
  +
tools: {
  +
tags: {
  +
label: 'tags',
  +
type: 'select',
  +
list: {
  +
'cattag': {
  +
label: '{' + '{cat tag|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cat tag|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'tagplus': {
  +
label: '{' + '{tag+|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{tag+|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'tag': {
  +
label: '{' + '{tag|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{tag|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'move': {
  +
label: '{' + '{move|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{move|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'merge': {
  +
label: '{' + '{merge|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{merge|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'anchor': {
  +
label: '{' + '{anchor|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{anchor|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'delete': {
  +
label: '{' + '{delete}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{delete}}'
  +
}
  +
}
  +
},
  +
'cite': {
  +
label: '{' + '{cite}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{cite}}'
  +
}
  +
}
  +
},
  +
'theory': {
  +
label: '{' + '{theory}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{theory}}'
  +
}
  +
}
  +
},
  +
'disputed': {
  +
label: '{' + '{disputed}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{disputed}}'
  +
}
  +
}
  +
},
  +
'expand': {
  +
label: '{' + '{expand}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{expand}}'
  +
}
  +
}
  +
},
  +
'clarify': {
  +
label: '{' + '{clarify}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{clarify}}'
  +
}
  +
}
  +
},
  +
'uncanonical': {
  +
label: '{' + '{uncanonical}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{uncanonical}}'
  +
}
  +
}
  +
},
  +
'copyright': {
  +
label: '{' + '{copyright}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{copyright}}'
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
}
  +
} );
  +
  +
//Add new dropdown for other stuff to the "advanced" section
  +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  +
section: 'advanced',
  +
groups: {
  +
list: {
  +
tools: {
  +
references: {
  +
label: 'other',
  +
type: 'select',
  +
list: {
  +
'for': {
  +
label: '{' + '{for|',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{for|'
  +
}
  +
}
  +
},
  +
'collapsible': {
  +
label: 'Collapsing',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{| class="mw-collapsible mw-collapsed" width=100%' + '\n' + '|-' + '\n' + '|' + '\n' + '|-' + '\n' + '|' + '\n',
  +
post: '\n' + '|}'
  +
}
  +
}
  +
},
  +
//Redirect cat tags
  +
'nominal': {
  +
label: 'Nominal',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '[' + '[Category: Nominal redirects]]'
  +
}
  +
}
  +
},
  +
'structural': {
  +
label: 'Structural',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '[' + '[Category: Structural redirects]]'
  +
}
  +
}
  +
},
  +
'subsection': {
  +
label: 'Subsection',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '[' + '[Category: Subsection redirects]]'
  +
}
  +
}
  +
},
  +
'correction': {
  +
label: 'Correction',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '[' + '[Category: Correction redirects]]'
  +
}
  +
}
  +
},
  +
'forgallery': {
  +
label: '{' + '{for|/' + 'Gallery',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{for|/Gallery|more images}}'
  +
}
  +
}
  +
},
  +
'roshardate': {
  +
label: '{' + '{rosharan date}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{rosharan date|',
  +
post: '}}'
  +
}
  +
}
  +
},
  +
'pre': {
  +
label: '<pre>',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<pre>',
  +
post: '</pre>'
  +
}
  +
}
  +
},
  +
'dpl': {
  +
label: '<dynamicpagelist>',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '<DynamicPageList>' + '\n' + 'mode=ordered' + '\n' + 'category=' + '\n' + 'notcategory=' + '\n' + 'namespace=' + '\n' + 'ordermethod=sortkey' + '\n' + 'order=ascending' + '\n' + '</DynamicPageList>'
  +
}
  +
}
  +
},
  +
'forresidents': {
  +
label: '{' + '{for|Residents',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{for|:Category:Residents of {' + '{SUBST:PAGENAME}}|a full list see}}'
  +
}
  +
}
  +
},
  +
'prefixindex': {
  +
label: 'PrefixIndex',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{Special:PrefixIndex/{' + '{FULLPAGENAME}}/|stripprefix=1}}'
  +
}
  +
}
  +
},
  +
'spoiler': {
  +
label: '{' + '{spoiler|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '{' + '{spoiler|}}'
  +
}
  +
}
  +
},
  +
'update': {
  +
label: '{' + '{update|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '{' + '{update|}}'
  +
}
  +
}
  +
},
  +
'demoted': {
  +
label: '{' + '{demoted|}}',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '\n' + '{' + '{demoted|}}'
 
}
 
}
 
}
 
}
Línea 868: Línea 1389:
 
type: 'select',
 
type: 'select',
 
list: {
 
list: {
'elendel-button': {
+
'elendel-ref': {
  +
label: 'Elendel ref',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{file ref|Elendel_Daily_broadsheet.png|\'\'The Elendel Daily\'\' broadsheet}}'
  +
}
  +
}
  +
},
  +
'house-ref': {
  +
label: 'House ref',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{file ref|House_Record_broadsheet.jpg|\'\'The House Record\'\' broadsheet}}'
  +
}
  +
}
  +
},
  +
'ascendancy-ref': {
  +
label: 'Ascendancy ref',
  +
action: {
  +
type: 'encapsulate',
  +
options: {
  +
pre: '{' + '{file ref|New_Ascendancy_broadsheet.jpg|\'\'The New Ascendancy\'\' broadsheet}}'
  +
}
  +
}
  +
},
  +
'elendel': {
 
label: 'Elendel',
 
label: 'Elendel',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{file ref|Elendel_Daily_broadsheet.png|\'\'The Elendel Daily\'\' Broadsheet}}',
+
pre: '\'\'[[Elendel Daily]]\'\''
 
}
 
}
 
}
 
}
 
},
 
},
'house-button': {
+
'house': {
 
label: 'House',
 
label: 'House',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{file ref|House_Record_broadsheet.jpg|\'\'The House Record\'\' Broadsheet}}',
+
pre: '\'\'[[House Record]]\'\''
 
}
 
}
 
}
 
}
 
},
 
},
'ascendency-button': {
+
'ascendancy': {
label: 'Ascendency',
+
label: 'Ascendancy',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '{' + '{file ref|New_Ascendancy_broadsheet.jpg|\'\'The New Ascendency\'\' Broadsheet}}',
+
pre: '\'\'[[New Ascendancy]]\'\''
 
}
 
}
 
}
 
}

Revisión actual del 00:32 28 dic 2021

//change syntax highlighter timeout time
('//www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-DotsSyntaxHighlighter.js&action=raw&ctype=text/javascript');

syntaxHighlighterConfig = {
    timeout: 45,
}

//customize toolbar
var customizeToolbar = function() {
  /* Your code goes here */

 //removing original buttons I don't want

   //Remove default references button
   $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
 	  'section': 'main',
 	  'group': 'insert',
 	  'tool': 'reference'
   });
 
  //remove bulleted list button
  $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
        'section': 'advanced',
        'group': 'format',
        'tool': 'ulist'
  });
 
  //remove numbered list button
  $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
        'section': 'advanced',
        'group': 'format',
        'tool': 'olist'
  });

  //remove <br> button so I can replace it with my own <br/> button
  $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
        'section': 'advanced',
        'group': 'format',
        'tool': 'newline'
  });

  //remove table button
  $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
        'section': 'advanced',
        'group': 'insert',
        'tool': 'table'
  });

  //remove File button
  $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
        'section': 'main',
        'group': 'insert',
        'tool': 'file'
  });

 //Adding various buttons

  // Adding category button to the "main" section
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "category": {
        label: 'Category',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/2/2d/Button_clipboard_category.png',
        action: {
          type: 'encapsulate',
          options: {
            pre:  "[[Category: ",
            post: "]]"
          }
        }
      }
    }
  });

  // Adding Artist header button for galleries to the "main" section
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "Artist-header": {
        label: 'Artist header',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/3/3a/Button_av-img.png',
        action: {
          type: 'encapsulate',
          options: {
            pre: '| <small><center>by {' + '{a|',
            post: '}}</center></small>'
          }
        }
      }
    }
  });

  // Adding image template button to the "main" section
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "image": {
        label: 'Image template',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/d/d8/Vector_toolbar_insert_image_button.png',
        action: {
          type: 'encapsulate',
          options: {
            pre:  '{' + '{image|',
            post: '|side=|width=|caption}}'
          }
        }
      }
    }
  });

  // Adding Wikipedia link button to the "main" section
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "wikipedia": {
        label: 'Wikipedia',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/c/cb/Button_wikipedia.png',
        action: {
          type: 'encapsulate',
          options: {
            pre:  "[[Wikipedia: ",
            post: "|]]"
          }
        }
      }
    }
  });

  // Adding <br/> button to the "main" section
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "break": {
        label: 'Break tag',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/1/13/Button_enter.png',
        action: {
          type: 'encapsulate',
          options: {
            pre:  '<' + 'br />'
          }
        }
      }
    }
  });

  // Adding link button to the "main" section
  $('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
     "link": {
	label: 'Link',
	type: 'button',
	icon: '//upload.wikimedia.org/wikipedia/commons/9/97/Button_int_link.png',
	action: {
	  type: 'encapsulate',
	  options: {
	    pre: "[[",
	    post: "]]"
	  }
	}
      }
    }
  });

  // Adding hidden text button to the "main" section
  $('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
     "hidden": {
	label: 'Hidden text',
	type: 'button',
	icon: '//upload.wikimedia.org/wikipedia/commons/1/1b/Button_hide_wiki_tag.png',
	action: {
	  type: 'encapsulate',
	  options: {
	    pre: "<!--",
	    post: "-->"
	  }
	}
      }
    }
  });

  // Adding columns button to the "main" section
  $('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
     "columns": {
	label: 'Columns',
	type: 'button',
	icon: '//upload.wikimedia.org/wikipedia/commons/2/25/Vector_toolbar_bulleted_list_button.png',
	action: {
	  type: 'encapsulate',
	  options: {
	    pre: '{' + '{columns|' + '\n',
	    post: '\n' + '}}'
	  }
	}
      }
    }
  });

  // Adding a <code> button to the "main" section
  $('#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
     "code": {
	label: 'Code',
	type: 'button',
	icon: '//upload.wikimedia.org/wikipedia/commons/2/23/Button_code.png',
	action: {
	  type: 'encapsulate',
	  options: {
	    pre: '<' + 'code>',
	    post: '</' + 'code>'
	  }
	}
      }
    }
  });

 //Adding a bunch of dropdowns to the "advanced" section for easy access

  //Add new references dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  references: {
					  label: 'refs',
					  type: 'select',
					  list: {
						  'book': {
							  label: '{' + '{book ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{book ref|',
									  post: '}}'
								  }
							  }
						  },
						  'wob': {
							  label: '{' + '{wob ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{wob ref|',
									  post: '}}'
								  }
							  }
						  },
						  'ref': {
							  label: '{' + '{ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{ref|text=',
									  post: '}}'
								  }
							  }
						  },
						  'epigraph': {
							  label: '{' + '{epigraph ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{epigraph ref|',
									  post: '}}'
								  }
							  }
						  },
						  'au': {
							  label: '{' + '{au ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{au ref|',
									  post: '}}'
								  }
							  }
						  },
						  'msh': {
							  label: '{' + '{msh ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{msh ref|',
									  post: '}}'
								  }
							  }
						  },
						  'tes': {
							  label: '{' + '{tes ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{tes ref|',
									  post: '}}'
								  }
							  }
						  },
						  'file': {
							  label: '{' + '{file ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{file ref|',
									  post: '}}'
								  }
							  }
						  },
						  'mapref': {
							  label: '{' + '{map ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{map ref|',
									  post: '}}'
								  }
							  }
						  },
						  'url': {
							  label: '{' + '{url ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{url ref|url=',
									  post: '|text=|date=|site=}}'
								  }
							  }
						  },
						  '17s': {
							  label: '{' + '{17s ref}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{17s ref|topic/news/post',
									  post: '|id#|description|date=}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Adding an infobox dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  infoboxes: {
					  label: 'infoboxes',
					  type: 'select',
					  list: {
						  'character': {
							  label: '{' + '{character}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{character' + '\n' + '|image=' + '\n' + '|unnamed=y' + '\n' + '|merge-family=y' + '\n' + '|parents=' + '\n' + '|spouse=' + '\n' + '|siblings=' + '\n' + '|children=' + '\n' + '|ancestors=' + '\n' + '|relatives=' + '\n' + '|descendants=' + '\n' + '|born=' + '\n' + '|died=' + '\n' + '|abilities=' + '\n' + '|bonded=' + '\n' + '|titles=' + '\n' + '|aliases=' + '\n' + '|skills=' + '\n' + '|achievements=' + '\n' + '|#profession=' + '\n' + '|profession=' + '\n' + '|occupation=' + '\n' + '|religion=' + '\n' + '|groups=' + '\n' + '|species=' + '\n' + '|era=' + '\n' + '|birthplace=' + '\n' + '|residence=' + '\n' + '|ethnicity=' + '\n' + '|nation=' + '\n' + '|nationality='
								  }
							  }
						  },
						  'architecture': {
							  label: '{' + '{architecture}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{architecture' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|usage=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
								  }
							  }
						  },
						  'business': {
							  label: '{' + '{business}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{business' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|members=' + '\n' + '|services=' + '\n' + '|products=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|nation='
								  }
							  }
						  },
						  'culture': {
							  label: '{' + '{culture}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{culture' + '\n' + '|image=' + '\n' + '|related=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|origin='
								  }
							  }
						  },
						  'event': {
							  label: '{' + '{event}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{event' + '\n' + '|image=' + '\n' + '|partof=' + '\n' + '|date=' + '\n' + '|era=' + '\n' + '|participants=' + '\n' + '|effects=' + '\n' + '|city= / state= / region= / nation=' + '\n' + '|princedom= / dominance=' + '\n' + '|location='
								  }
							  }
						  },
						  'food': {
							  label: '{' + '{food}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{food' + '\n' + '|image=' + '\n' + '|ingredients=' + '\n' + '|type=' + '\n' + '|taste=' + '\n' + '|origin='
								  }
							  }
						  },
						  'geography': {
							  label: '{' + '{geography}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{geography' + '\n' + '|map= / |image=' + '\n' + '|type=' + '\n' + '|era=' + '\n' + '|region='
								  }
							  }
						  },
						  'group': {
							  label: '{' + '{group}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{group' + '\n' + '|image=' + '\n' + '|founder= / founders=' + '\n' + '|leader= / leaders=' + '\n' + '|hq=' + '\n' + '|type=' + '\n' + '|era='
								  }
							  }
						  },
						  'item': {
							  label: '{' + '{item}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{item' + '\n' + '|image=' + '\n' + '|owner= / owners=' + '\n' + '|creator= / creators=' + '\n' + '|type=' + '\n' + '|function='
								  }
							  }
						  },
						  'lifeform': {
							  label: '{' + '{lifeform}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{lifeform' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|abilities=' + '\n' + '|use=' + '\n' + '|native=' + '\n' + '|sapient=y'
								  }
							  }
						  },
						  'settlement': {
							  label: '{' + '{settlement}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{settlement' + '\n' + '|map/image=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
								  }
							  }
						  },
						  'location': {
							  label: '{' + '{location}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{location' + '\n' + '|map/image=' + '\n' + '|capital=' + '\n' + '|ruler=' + '\n' + '|occupied=' + '\n' + '|era=' + '\n' + '|city=' + '\n' + '|state=' + '\n' + '|dominance=' + '\n' + '|princedom=' + '\n' + '|region=' + '\n' + '|nation='
								  }
							  }
						  },
						  'literature': {
							  label: '{' + '{literature}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{literature' + '\n' + '|image=' + '\n' + '|type=' + '\n' + '|author=' + '\n' + '|language=' + '\n' + '|era='
								  }
							  }
						  },
						  'vehicle': {
							  label: '{' + '{vehicle}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{vehicle' + '\n' + '|image=' + '\n' + '|owner/owners=' + '\n' + '|creator/creators=' + '\n' + '|type=' + '\n' + '|captain='
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new build-a-box dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  simplecharacterinfobox: {
					  label: 'build-a-box',
					  type: 'select',
					  list: {
						  'start': {
							  label: '{' + '{character',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{character'
								  }
							  }
						  },
						  'residence': {
							  label: '|residence=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|residence='
								  }
							  }
						  },
						  'imageparam': {
							  label: '|image=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|image='
								  }
							  }
						  },
						  'profession': {
							  label: '|profession=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|profession='
								  }
							  }
						  },
						  '#profession': {
							  label: '|#profession=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|#profession='
								  }
							  }
						  },
						  'skills': {
							  label: '|skills=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|skills='
								  }
							  }
						  },
						  'species': {
							  label: '|species=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|species='
								  }
							  }
						  },
						  'abilities': {
							  label: '|abilities=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|abilities='
								  }
							  }
						  },
						  'ethnicity': {
							  label: '|ethnicity=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|ethnicity='
								  }
							  }
						  },
						  'born': {
							  label: '|born=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|born='
								  }
							  }
						  },
						  'died': {
							  label: '|died=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|died='
								  }
							  }
						  },
						  'nationality': {
							  label: '|nationality=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|nationality='
								  }
							  }
						  },
						  'bonded': {
							  label: '|bonded=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|bonded='
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new infobox endings dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  endings: {
					  label: 'ends',
					  type: 'select',
					  list: {
						  'sa': {
							  label: 'Stormlight',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Roshar' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[The Stormlight Archive]]' + '\n' + '}}'
								  }
							  }
						  },
						  'mbe1': {
							  label: 'MB Era 1',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 1]]' + '\n' + '}}'
								  }
							  }
						  },
						  'mbe2': {
							  label: 'MB Era 2',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Scadrial' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Mistborn Era 2]]' + '\n' + '}}'
								  }
							  }
						  },
						  'wb': {
							  label: 'Warbreaker',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Nalthis' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Warbreaker]]' + '\n' + '}}'
								  }
							  }
						  },
						  'ela': {
							  label: 'Elantris',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Sel' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[Elantris (book)|Elantris]]' + '\n' + '}}'
								  }
							  }
						  },
						  'alc': {
							  label: 'Alcatraz',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|earth=Alcatraz' + '\n' + '|books=[[Alcatraz Versus the Evil Librarians (series)|Alcatraz Versus the Evil Librarians]]' + '\n' + '}}'
								  }
							  }
						  },
						  'ws': {
							  label: 'White Sand',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=Taldain' + '\n' + '|universe=[[Cosmere]]' + '\n' + '|books=[[White Sand]]' + '\n' + '}}'
								  }
							  }
						  },
						  'skyward': {
							  label: 'Skyward',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|world=',
									  post: '\n' + '|universe=[[Cytoverse]]' + '\n' + '|books=[[Skyward (series)]]' + '\n' + '}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new page ends dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  bottoms: {
					  label: 'bottoms',
					  type: 'select',
					  list: {
						  'pagename': {
							  label: '{' + '{SUBST:PAGENAME}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '\'\'\'{' + '{SUBST:PAGENAME}}\'\'\''
								  }
							  }
						  },
						  'notes': {
							  label: '== Notes ==',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n\n' + '== Notes =='
								  }
							  }
						  },
						  'refsection': {
							  label: '<' + 'references/>',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '<' + 'references />'
								  }
							  }
						  },
						  'stub': {
							  label: '{' + '{stub}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{stub}}'
								  }
							  }
						  },
						  'partial': {
							  label: '{' + '{partial}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{partial}}'
								  }
							  }
						  },
						  'complete': {
							  label: '{' + '{complete}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{complete}}'
								  }
							  }
						  },
						  'alcatraz': {
							  label: '{' + '{Alcatraz}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Alcatraz}}'
								  }
							  }
						  },
						  'elantris': {
							  label: '{' + '{Elantris}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Elantris}}'
								  }
							  }
						  },
						  'mbera1': {
							  label: '{' + '{Mistborn|Era 1}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Mistborn|Era 1}}'
								  }
							  }
						  },
						  'mbera2': {
							  label: '{' + '{Mistborn|Era 2}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Mistborn|Era 2}}'
								  }
							  }
						  },
						  'reckoners': {
							  label: '{' + '{Reckoners}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Reckoners}}'
								  }
							  }
						  },
						  'sky': {
							  label: '{' + '{Skyward}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Skyward}}'
								  }
							  }
						  },
						  'storm': {
							  label: '{' + '{Stormlight}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Stormlight}}'
								  }
							  }
						  },
						  'warbreaker': {
							  label: '{' + '{Warbreaker}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{Warbreaker}}'
								  }
							  }
						  },
						  'whitesand': {
							  label: '{' + '{White Sand}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{White Sand}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new art dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  art: {
					  label: 'art',
					  type: 'select',
					  list: {
						  'artistbox': {
							  label: '{' + '{artist}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{'+'{artist' + '\n' + '|image=' + '\n' + '|alias=' + '\n' + '|fb=' + '\n' + '|reddit=' + '\n' + '|behance=' + '\n' + '|da=' + '\n' + '|ig=' + '\n' + '|as=' + '\n' + '|tumblr=' + '\n' + '|twitter=' + '\n' + '|site=' + '\n' + '|license=all|some|none|official' + '\n' + '|contact=' + '\n' + '|type=fan|interior|cover|multimedia' + '\n' + '|no-notify=y' + '\n' + '}}' + '\n' + '\n' + '\n' + '== Gallery ==' + '\n'
								  }
							  }
						  },
						  'gallerysubpage': {
							  label: 'gallery subpage',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '== Official artwork ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Official artwork">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Portraits ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Portraits">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '== Scenes ==' + '\n' + '<' + 'gallery mode="packed" heights=200px caption="Scenes">' + '\n' + '\n' + '</gallery>' + '\n' + '\n' + '[' + '[Category:Gallery Subpages]]'
								  }
							  }
						  },
						  'artbox': {
							  label: '{' + '{art}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{art' + '\n' + '|#artist=' + '\n' + '|series=' + '\n' + '|#source=',
									  post: '\n' + '|type=' + '\n' + '}}'
								  }
							  }
						  },
						  'artistheading': {
							  label: 'artist header',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '| <small><center>by {' + '{a|',
									  post: '}}</center></small>'
								  }
							  }
						  },
						  'bookcovercat': {
							  label: '{' + '{cat tag|Books|book cover}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|Books|book cover}}'
								  }
							  }
						  },
						  'charactercat': {
							  label: '{' + '{cat tag|Character images}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|Character images}}'
								  }
							  }
						  },
						  'artcat': {
							  label: '{' + '{cat tag|Art}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|Art}}'
								  }
							  }
						  },
						  'interiorartcat': {
							  label: '{' + '{cat tag|Interior art}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|Interior art}}'
								  }
							  }
						  },
						  'interiorartcat': {
							  label: '{' + '{cat tag|Interior art}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|Interior art}}'
								  }
							  }
						  },
						  'officialart': {
							  label: '|official=y',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '|official=y' + '\n'
								  }
							  }
						  },
						  'tracer': {
							  label: '|tracer=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|tracer='
								  }
							  }
						  },
						  'modified': {
							  label: '|modified=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|modified='
								  }
							  }
						  },
						  'bookparam': {
							  label: '|book=',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '|book='
								  }
							  }
						  },
						  'email': {
							  label: 'Email',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '[mailto:',
									  post: ' Email]'
								  }
							  }
						  },
						  'clearright': {
							  label: 'clear:right',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '<br style="clear:right;"/>'
								  }
							  }
						  },
						  'clearleft': {
							  label: 'clear:left',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '<br style="clear:left;"/>'
								  }
							  }
						  },
						  'galleryheader': {
							  label: 'gallery header',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '<' + 'gallery caption="Gallery" mode="packed" heights=200px>' + '\n'
								  }
							  }
						  },
						  'endgallery': {
							  label: '</gallery>',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '</gallery>'
								  }
							  }
						  },
						  'metadone': {
							  label: '{' + '{meta/done}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{meta/done}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new dropdown of commonly used tags to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  tags: {
					  label: 'tags',
					  type: 'select',
					  list: {
						  'cattag': {
							  label: '{' + '{cat tag|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cat tag|',
									  post: '}}'
								  }
							  }
						  },
						  'tagplus': {
							  label: '{' + '{tag+|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{tag+|',
									  post: '}}'
								  }
							  }
						  },
						  'tag': {
							  label: '{' + '{tag|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{tag|',
									  post: '}}'
								  }
							  }
						  },
						  'move': {
							  label: '{' + '{move|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{move|',
									  post: '}}'
								  }
							  }
						  },
						  'merge': {
							  label: '{' + '{merge|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{merge|',
									  post: '}}'
								  }
							  }
						  },
						  'anchor': {
							  label: '{' + '{anchor|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{anchor|',
									  post: '}}'
								  }
							  }
						  },
						  'delete': {
							  label: '{' + '{delete}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{delete}}'
								  }
							  }
						  },
						  'cite': {
							  label: '{' + '{cite}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{cite}}'
								  }
							  }
						  },
						  'theory': {
							  label: '{' + '{theory}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{theory}}'
								  }
							  }
						  },
						  'disputed': {
							  label: '{' + '{disputed}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{disputed}}'
								  }
							  }
						  },
						  'expand': {
							  label: '{' + '{expand}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{expand}}'
								  }
							  }
						  },
						  'clarify': {
							  label: '{' + '{clarify}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{clarify}}'
								  }
							  }
						  },
						  'uncanonical': {
							  label: '{' + '{uncanonical}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{uncanonical}}'
								  }
							  }
						  },
						  'copyright': {
							  label: '{' + '{copyright}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{copyright}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new dropdown for other stuff to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  references: {
					  label: 'other',
					  type: 'select',
					  list: {
						  'for': {
							  label: '{' + '{for|',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{for|'
								  }
							  }
						  },
						  'collapsible': {
							  label: 'Collapsing',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{| class="mw-collapsible mw-collapsed" width=100%' + '\n' + '|-' + '\n' + '|' + '\n' + '|-' + '\n' + '|' + '\n',
									  post: '\n' + '|}'
								  }
							  }
						  },
						  //Redirect cat tags
						  'nominal': {
							  label: 'Nominal',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '[' + '[Category: Nominal redirects]]'
								  }
							  }
						  },
						  'structural': {
							  label: 'Structural',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '[' + '[Category: Structural redirects]]'
								  }
							  }
						  },
						  'subsection': {
							  label: 'Subsection',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '[' + '[Category: Subsection redirects]]'
								  }
							  }
						  },
						  'correction': {
							  label: 'Correction',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '[' + '[Category: Correction redirects]]'
								  }
							  }
						  },
						  'forgallery': {
							  label: '{' + '{for|/' + 'Gallery',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{for|/Gallery|more images}}'
								  }
							  }
						  },
						  'roshardate': {
							  label: '{' + '{rosharan date}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{rosharan date|',
									  post: '}}'
								  }
							  }
						  },
						  'pre': {
							  label: '<pre>',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '<pre>',
									  post: '</pre>'
								  }
							  }
						  },
						  'dpl': {
							  label: '<dynamicpagelist>',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '<DynamicPageList>' + '\n' + 'mode=ordered' + '\n' + 'category=' + '\n' + 'notcategory=' + '\n' + 'namespace=' + '\n' + 'ordermethod=sortkey' + '\n' + 'order=ascending' + '\n' + '</DynamicPageList>'
								  }
							  }
						  },
						  'forresidents': {
							  label: '{' + '{for|Residents',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{for|:Category:Residents of {' + '{SUBST:PAGENAME}}|a full list see}}'
								  }
							  }
						  },
						  'prefixindex': {
							  label: 'PrefixIndex',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{Special:PrefixIndex/{' + '{FULLPAGENAME}}/|stripprefix=1}}'
								  }
							  }
						  },
						  'spoiler': {
							  label: '{' + '{spoiler|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{spoiler|}}'
								  }
							  }
						  },
						  'update': {
							  label: '{' + '{update|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{update|}}'
								  }
							  }
						  },
						  'demoted': {
							  label: '{' + '{demoted|}}',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\n' + '{' + '{demoted|}}'
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );

  //Add new broadsheet citations dropdown to the "advanced" section
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	  section: 'advanced',
	  groups: {
		  list: {
			  tools: {
				  broadsheets: {
					  label: 'broadsheets',
					  type: 'select',
					  list: {
						  'elendel-ref': {
							  label: 'Elendel ref',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{file ref|Elendel_Daily_broadsheet.png|\'\'The Elendel Daily\'\' broadsheet}}'
								  }
							  }
						  },
						  'house-ref': {
							  label: 'House ref',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{file ref|House_Record_broadsheet.jpg|\'\'The House Record\'\' broadsheet}}'
								  }
							  }
						  },
						  'ascendancy-ref': {
							  label: 'Ascendancy ref',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '{' + '{file ref|New_Ascendancy_broadsheet.jpg|\'\'The New Ascendancy\'\' broadsheet}}'
								  }
							  }
						  },
						  'elendel': {
							  label: 'Elendel',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\'\'[[Elendel Daily]]\'\''
								  }
							  }
						  },
						  'house': {
							  label: 'House',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\'\'[[House Record]]\'\''
								  }
							  }
						  },
						  'ascendancy': {
							  label: 'Ascendancy',
							  action: {
								  type: 'encapsulate',
								  options: {
									  pre: '\'\'[[New Ascendancy]]\'\''
								  }
							  }
						  }
					  }
				  }
			  }
		  }
	  }
  } );
};

/* 
 * Check if view is in edit mode and that the required modules are available. Then, customize the toolbar...
 * Don't touch below this line!
 */
if (['edit', 'submit'].indexOf(mw.config.get('wgAction')) !== -1) {
  mw.loader.using('user.options').then(function() {
    // This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
    if (mw.user.options.get('usebetatoolbar') == 1) {
      $.when(
        mw.loader.using('ext.wikiEditor'), $.ready
      ).then(customizeToolbar);
    }
  });
}