So recently I have been trying to add a Rich Text Editor to my Django-powered project. I tried and tested the vast majority of editors available. Here are the ones that are easy to use and I liked the most:
Pros:
Cons:
The best possible way to use it according to me is with this django-app. It does all the work for you from adding redactor your project to file handling and much more. All you need to do is download and add it your INSTALLED_APPS setting.
Pros:
Cons:
- TinyMCE It is free, opensource and has an active community for its maintenance. This is how it looks.
- To include it it in your project all you need to do is add this to your template:
<html> <head><!-- CDN hosted by Cachefly --> <script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script> <script> tinymce.init({selector:'textarea'}); </script> </head> <body> <textarea>Your content here.</textarea> </body> </html>TinyMCE comes with many free plugin which you can use to customise your editor.
Pros:
- Opensource and free
- Large Community
- Easy to use
Cons:
- The only problem with TinyMCE is to write your own handler for file/image uploads which can be quite frustrating and time consuming if you are new to it.
Also, if you are looking for an app that already does the all the work for you then here it is.
This is how it looks:
The best possible way to use it according to me is with this django-app. It does all the work for you from adding redactor your project to file handling and much more. All you need to do is download and add it your INSTALLED_APPS setting.
Pros:
- Beautiful and complete. One stop for all your needs.
Cons:
- Not FREE
0 comments:
Post a Comment