For me it was Django built-in templating system that was stripping my tags.
I solved this by using "safe" template filter.
{{ var | safe }}

here's the docs:
https://docs.djangoproject.com/en/dev/ref/templates/builtins/#std:templatefilter-safe

Hope this helps.
-matt

On Thu, Oct 30, 2014 at 7:21 PM, Ross Laird <r...@rosslaird.com> wrote:

> I'd like to render some charts, using Chart.js, but I can't seem to get
> the canvas tag to be preserved when I enter it into a rich text page. I
> have tinyMCE set up to accept all tags, and I have also added canvas to the
> ALLOWED_TAGS in defaults.py (thinking that this might not actually be a
> tinyMCE issue). But *something *continues to strip out these tags.
> Anybody have an idea what's going on?
>
> I suppose I might have to create a custom template for this, if I can't
> get it working through the interface.
>
> Ross
>
> --
> You received this message because you are subscribed to the Google Groups
> "Mezzanine Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to