Skip to main content

A django BBCode integration..

Project description

Django-precise-bbcode is a Django application providing a way to create textual contents based on BBCodes.

BBCode is a special implementation of HTML. BBCode itself is similar in style to HTML, tags are enclosed in square brackets [ and ] rather than < and > and it offers greater control over what and how something is displayed.

This application includes a BBCode compiler aimed to render any BBCode content to HTML and allows the use of BBCodes tags in models, forms and admin forms. The BBCode parser comes with built-in tags (the default ones ; b, u, etc) and allows the use of smilies, custom BBCode placeholders and custom BBCode tags. These can be added in two different ways:

  • Custom tags can be defined in the Django administration panel and stored into the database ; doing this allows any non-technical admin to add BBCode tags by defining the HTML replacement string associated with each tag

  • Tags can also be manually registered to be used by the parser by defining a tag class aimed to render a given bbcode tag and its content to the corresponding HTML markup

Documentation

Online browsable documentation is available at https://django-precise-bbcode.readthedocs.org.

Requirements

  • Python 2.7+ or 3.3+

  • Django 1.8+

  • PIL or Pillow (required for smiley tags)

Installation

Just run:

pip install django-precise-bbcode

Once installed you can configure your project to use django-precise-bbcode with the following steps.

Add precise_bbcode to INSTALLED_APPS in your project’s settings module:

INSTALLED_APPS = (
    # other apps
    'precise_bbcode',
)

Then install the models:

python manage.py migrate

Usage

Rendering bbcodes

Django-precise-bbcode comes with a BBCode parser that allows you to transform a textual content containing BBCode tags to the corresponding HTML markup. To do this, simply import the get_parser shortcut and use the render method of the BBCode parser:

>>> from precise_bbcode.bbcode import get_parser
>>> parser = get_parser()
>>> parser.render('[b]Hello [u]world![/u][/b]')
'<strong>Hello <u>world!</u></strong>'

It’s that easy!

As you may need to render bbcodes inside one of your Django template, this parser can be used as a template filter or as a template tag after loading bbcode_tags:

{% load bbcode_tags %}
{% bbcode entry.bbcode_content %}
{{ "[b]Write some bbcodes![/b]"|bbcode }}

The BBCode content included in the entry.bbcode_content field will be converted to HTML and displayed. The last statement will output <strong>Write some bbcodes!</strong>.

Storing bbcodes

While you can use the Django built-in models.TextField to add your BBCode contents to your models, a common need is to store both the BBCode content and the corresponding HTML markup in the database. To address this django-precise-bbcode provides a BBCodeTextField.

from django.db import models
from precise_bbcode.fields import BBCodeTextField

class Post(models.Model):
    content = BBCodeTextField()

This field will store both the BBCode content and the correspondign HTML markup. The HTML content of such a field can then be displayed in any template by using its rendered attribute:

{{ post.content.rendered }}

And more…

Head over to the documentation for all the details on how to use the BBCode parser and how to define custom BBcode tags, placeholders and smilies.

Authors

Morgan Aubert (@ellmetha) and contributors

License

BSD. See LICENSE for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-precise-bbcode-1.2.8.tar.gz (25.8 kB view details)

Uploaded Source

Built Distribution

django_precise_bbcode-1.2.8-py2.py3-none-any.whl (39.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-precise-bbcode-1.2.8.tar.gz.

File metadata

File hashes

Hashes for django-precise-bbcode-1.2.8.tar.gz
Algorithm Hash digest
SHA256 b302d1d2d1e6e71469fc5c5d08e30b6e4d76dac4b1ce0b83aa0584c3e9df5456
MD5 fcf908139a820d9f6c013ccfeffeba9b
BLAKE2b-256 0bc736f70d25cd609617d79b962d3ced395395717f350ecd8faab08d37f23406

See more details on using hashes here.

File details

Details for the file django_precise_bbcode-1.2.8-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_precise_bbcode-1.2.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ce2ba17fb5935922b842812e19197ad265c27a6b3e83c5f72394b9ebf77e3532
MD5 835b00e08352b711e7ee80679c0f90f4
BLAKE2b-256 a5edd5f08e19e607c55adc90808bb8509d9deb1d81277de1a7b82691e8f93725

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page