Reputation: 5160
I can't find the djangocms_text_ckeditor app anywhere in my django virtualenv directorys. I didn't found a clue in the django-cms documentation in how to configure the editor.
I don't want the ckeditor always wraps <p>
-tags around a simple text string (like a telephone number).
Upvotes: 3
Views: 936
Reputation: 5160
I can answer this question myself: To configure the editor you use the settings.py and just add this:
CKEDITOR_SETTINGS = {
'autoParagraph': False
}
This configuration inserts valid javascript configuration in the ckeditor javascript files.
Upvotes: 6