var edButtons = new Array();
var extendedStart = edButtons.length;
// below here are the extended buttons
edButtons[edButtons.length] =
new edButton('ed_block'
,'Zitat'
,'
'
,'
'
,'q'
);
edButtons[edButtons.length] =
new edButton('ed_link'
,'Link'
,''
,''
,'a'
); // special case
edButtons[edButtons.length] =
new edButton('ed_strong'
,'Fett'
,''
,''
,'b'
);
edButtons[edButtons.length] =
new edButton('ed_em'
,'Kursiv'
,''
,''
,'i'
);
edButtons[edButtons.length] =
new edButton('ed_strike'
,'Durchgestrichen'
,''
,''
,'s'
);
edButtons[edButtons.length] =
new edButton('ed_strike'
,'Untergestrichen'
,''
,''
,'u'
);
edButtons[edButtons.length] =
new edButton('ed_pre'
,'Code'
,''
,''
,'c'
);
edButtons[edButtons.length] =
new edButton('ed_space'
,'Leerzeichen'
,' '
);
edButtons.push(
new edButton(
'ed_ol'
,'Nummerierung'
,'\n'
,'
\n\n'
,'o'
)
);
edButtons.push(
new edButton(
'ed_li'
,'Liste'
,''
,'\n'
,'l'
)
);
edButtons.push(
new edButton(
'ed_h1'
,'Überschrift 1'
,''
,'
\n\n'
,'1'
)
);
edButtons.push(
new edButton(
'ed_h2'
,'Überschrift 2'
,''
,'
\n\n'
,'2'
)
);
edButtons.push(
new edButton(
'ed_h3'
,'Überschrift 3'
,''
,'
\n\n'
,'3'
)
);
edButtons.push(
new edButton(
'ed_h4'
,'Überschrift 4'
,''
,'
\n\n'
,'4'
)
);
edButtons.push(
new edButton(
'ed_p'
,'Absatz'
,''
,'
\n\n'
,'p'
)
);
edButtons.push(
new edButton(
'ed_img'
,'Bild'
,'
'
,'img'
)
);
edButtons.push(
new edButton(
'ed_table'
,'Tabelle'
,'\n'
)
);
edButtons.push(
new edButton(
'ed_tr'
,'Tabellenreihe'
,'\t\n'
,'\n\t
\n'
)
);
edButtons.push(
new edButton(
'ed_td'
,'Tabellenzelle'
,'\t\t'
,' | \n'
)
);
edButtons.push(
new edButton(
'ed_break'
,'Neue Zeile'
,'
'
,''
)
);
edButtons.push(
new edButton(
'ed_line'
,'Linie'
,'
'
,''
)
);