Dear folks!
I’m new for Django. Sorry for the noob’s question, but I need some help.
I’m developing a website about birds of prey. My pages should contain complex information: text, images, hyperlinks, possibly even tables. Also I’d like to have some formatting (headers and so on). A random example how it can look like is here: https://habr.com/ru/post/473042/.
My question is, in what form a page’s content should be stored in the database:
-
HTML markup (flexible, but seems difficult to edit online)
-
In pieces: each block (image, paragraph, table) is stored separately.
-
Plain text with some markup (like BBCode or whatever).
-
Some other
I just noticed that the functionality of this visual editor would fit to my goals ideally. I’m even able to add images:
Please give me advice how I can provide this functionality, share your experience, perhaps provide some links.
I found different Django packages that deal with images, tables, and files, but separately. I need them all together.
Thanks!