New Lines

The default configuration for TinyMCE seems to insert a two new lines whenever you hit enter and sometimes I only want one. You can make this change in the "tinymce.module" file, by replacing this:

$tinymce_invoke = <<<EOD
<script type="text/javascript">
tinyMCE.init({
$tinymce_settings
});
</script>
EOD;

 With this:

$tinymce_invoke = <<<EOD
<script type="text/javascript">
tinyMCE.init({
$tinymce_settings,
force_br_newlines : 'true',
force_p_newlines : 'false'
});
</script>
EOD;

 

Darstellungsoptionen

Wählen Sie hier Ihre bevorzugte Anzeigeart für Kommentare und klicken Sie auf „Einstellungen speichern“ um die Änderungen zu übernehmen.

Nevermind, I figured out how

Nevermind, I figured out how to do single lines. You hold down the shift key while pressing enter to do a single line.