Poznámka: Po uložení musíte vyprázdnit mezipaměť vašeho prohlížeče, jinak změny neuvidíte.

///Na základě kódu Wikipedisty Schlomo (červenec 2011)
if ( typeof $j != 'undefined' && typeof $.fn.wikiEditor != 'undefined' ) {
	$( function() {
		$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'main',
			'group': 'format',
			'tools': {
				'strikethrough': {
					label: 'Strike',
					type: 'button',
					icon: 'http://upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
					action: {
						type: 'encapsulate',
						options: {
							pre: "<s>",
							post: "</s>"
						}
					}
				}
			}
		} );
		$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'sections': {
				'citations': {
					'type': 'toolbar',
					'label': 'Citace'
				}
			}
		} );
		$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': citation,
			'groups': {
				'literature': {
					'label': 'Literatura'
				}
			}
		} );
		$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': citation,
			'group': literature,
			'tools': {
				'monogr': {
					'label': 'Citace monografie',
					'type': 'button',
					'icon': 'http://upload.wikimedia.org/wikipedia/commons/e/ef/Button_cite_book.png',
					'action': {
						'type': 'encapsulate',
						'options': {
							pre: "\x7b\x7bCitace monografie\n | příjmení = ",
							post: "\n | jméno = \n | odkaz na autora = \n | titul = \n | vydavatel = \n | místo = \n | rok = \n | isbn =  \n | kapitola = \n | strany = \n | jazyk = \n\x7c\x7c"
						}
					}
				}
			}
		} );
	} );
}