var edButtons = new Array();
var extendedStart = edButtons.length;
// below here are the extended buttons
edButtons.push(
new edButton(
'ed_h2'
,'Überschrift 1'
,'
'
,'
\n\n'
,'2'
)
);
edButtons.push(
new edButton(
'ed_h3'
,'Überschrift 2'
,''
,'
\n\n'
,'3'
)
);
edButtons[edButtons.length] =
new edButton('ed_block'
,'Zitate'
,''
,'
'
,'q'
);
// special case
edButtons.push(
new edButton(
'ed_ext_link'
,'Link'
,''
,''
,'e'
)
); // special case
edButtons[edButtons.length] =
new edButton('ed_strong'
,'Fett'
,''
,''
,'b'
);
edButtons[edButtons.length] =
new edButton('ed_em'
,'Kursiv'
,''
,''
,'i'
);
edButtons.push(
new edButton(
'ed_br'
,'Absatz'
,'
'
,''
,"-1"
)
);
edButtons[edButtons.length] =
new edButton('ed_strike'
,'gestrichen'
,''
,''
,'s'
);
edButtons.push(
new edButton(
'ed_under'
,'unterstrichen'
,''
,''
)
);
edButtons.push(
new edButton(
'ed_ul'
,'Aufzählung'
,'\n\n'
,'u'
)
);
edButtons.push(
new edButton(
'ed_li'
,'Listen'
,'\t'
,'\n'
,'l'
)
);
edButtons.push(
new edButton(
'ed_ol'
,'Leertaste'
,' \n'
,'\n\n'
,'-1'
)
);
edButtons.push(
new edButton(
'ed_qc'
,'Quellcode'
,'\t'
,'\n'
,'q'
)
);