The problem is, that the editor in the suggest entry plugin only has those 2 buttons: "Url" and bold font. But I want all features from the "normal" editor in it. I found out that the functions are stored in 'suggest.js', but not were they are executed.
So I'd like to know were these lines are stored:
<script type="text/javascript">
document.write('<div class="toolbar">');
document.write('<input type="button" class="serendipityPrettyButton" name="insB" value="B" accesskey="b" style="font-weight: bold" onclick="wrapSelection(document.getElementById(\'serendipity_suggest_article\'), \'<strong>\', \'</strong>\')" />');
document.write('<input type="button" class="serendipityPrettyButton" name="insURL" value="URL" accesskey="l" onclick="wrapSelectionWithLink(document.getElementById(\'serendipity_suggest_article\'))" />');
document.write('</div>');
</script>