django-precise-bbcode
django-precise-bbcode copied to clipboard
A Django application for parsing, displaying and editing BBCodes-based text contents.
This is a bit of a weird edge case, but after changing one of my sites to this library after the current one was no longer viable, I noticed that...
`[center]🎈[/center]` will not be rendered as HTML, since the 🎈 character is not valid text. However, the documentation says that TEXT "matches anything", so I would suspect unicode characters as...
When base model (not abstract) contains BBCodeTextField and the child model is saved, the _rendered field is not saved in the database. In general, even the `pre_save` signal is not...
If I provide the input: `[code] for i in var: print(var[i]) [/code] ` precise-bbcode does not actually format that line as code (and it remains as plain text). This has...
I get this: ``` File "/app/apps/posts/forms.py", line 19, in save instance.save() File "/usr/local/lib/python3.5/site-packages/django/db/models/base.py", line 806, in save force_update=force_update, update_fields=update_fields) File "/usr/local/lib/python3.5/site-packages/django/db/models/base.py", line 831, in save_base update_fields=update_fields, File "/usr/local/lib/python3.5/site-packages/django/dispatch/dispatcher.py", line 193,...
I didn't see it in documentation, so I thought maybe this feature does not exist. Is there a way to parse bbcode to a list from a string? Considering a...
django have template tags linebreaks and linebreaksbr. I use TextField for store my post. in template {{ post.content|safe|bbcode }}, if I input many enter for linebreak, bbcode template tag convert...
Hi, I was wondering if you know of any BBCode editor that supports selecting text in the input/textarea and then clicking a BBCode tag button to apply it to the...
I think it`d be nice to access template variables through bbcode. 
Hi, thanks for application! But, can you add options support for precise-bbcode? Example: [codepen author=test]text[/codepen] Thanks!