Re: WYSIWYG/Rich Text Editor recommendations

2019-05-06 Thread Tim Johnson
* Joel Mathew [190430 17:29]: > Currently I'm using quill. It's easy to implement, and has all basic > features. Joel - perhaps you could check out another thread I started: subject - "quill tries to import deprecated django.forms.util" What version of django are you using? thanks again -

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-04 Thread Swatantra Kumar
Hi Tim, As your requirement is of a WYSIWYG editor, I often use CKEditor javascript library directly in my Django projects as I can't get any alternative which can provide features such as image/attachment upload, link pages, etc which are available with CKEditor. Also, check this Django CKEditor

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-04 Thread Tim Johnson
* Tim Johnson [190430 16:27]: > Using python 3.7.2 and django 2.1.5 > > Production is in Ubuntu 16.04 and prospective deployment is likely > to be CentOS with same python/django. > > I'm a retired python developer. > > I'd welcome recommendations and/or caveats regarding a stable > WYSIWIG "pl

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-02 Thread Andréas Kühne
I would second for quill - the main thing with that editor is that it doesn't store the HTML internally - this means that you can copy / paste from word for example without all of the strange html that comes with that. It is more restrictive than tinymce or the likes, but much better! Regards, An

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-02 Thread Lance Haig
Hi Tim, I used django-tinymce4-lite for my app https://github.com/lhaig/usery It works well from my perspective and gives a light editor. Regards Lance On 5/1/19 2:17 AM, Tim Johnson wrote: Using python 3.7.2 and django 2.1.5 Production is in Ubuntu 16.04 and prospective deployment is lik

Re: WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Tim Johnson
* Joel Mathew [190430 17:29]: > Currently I'm using quill. It's easy to implement, and has all basic > features. Cool. Thanks for that Joel. > > I'd like to recreate the same functionality with django. I will need > > to be able to include embedded images. -- Tim Johnson http://www.tj49.com

Re: WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Joel Mathew
Currently I'm using quill. It's easy to implement, and has all basic features. Sincerely yours, Joel G Mathew On Wed, 1 May 2019 at 05:47, Tim Johnson wrote: > Using python 3.7.2 and django 2.1.5 > > Production is in Ubuntu 16.04 and prospective deployment is likely > to be CentOS with same

WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Tim Johnson
Using python 3.7.2 and django 2.1.5 Production is in Ubuntu 16.04 and prospective deployment is likely to be CentOS with same python/django. I'm a retired python developer. I'd welcome recommendations and/or caveats regarding a stable WYSIWIG "plugin". Much is available on google, but it is al