Code:
<?php $this->block('custom'); ?>
style_formats : [
{ title: 'Style', items: [
{title : 'Bold text', inline : 'b'},
{title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
{title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
{title : 'Example 1', inline : 'span', classes : 'example1'},
{title : 'Example 2', inline : 'span', classes : 'example2'},
{title : 'Table styles'},
{title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
],
},
{
title: 'Mein Blockelement', // Der Titel, der im Editor angezeigt wird
block: 'div', // Das Tag, das verwendet werden soll (z.B. div, section)
classes: 'meine-klasse', // Eine benutzerdefinierte Klasse für Stilzuweisungen
styles: {
color: '#ff0000', // Farbe des Textes
backgroundColor: '#000000', // Hintergrundfarbe
// Weitere CSS-Stile können hier hinzugefügt werden
}
}
],
<?php $this->endblock(); ?>