Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to print html in python the normal way

55 views
Skip to first unread message

ashishj...@gmail.com

unread,
Oct 4, 2012, 7:24:13 AM10/4/12
to
Hi,

I wrote a simple filter as:

@register.filter()
def html(value):
return '<p>Check</p>'

when I use this filter in my template, it displays html as:

<p>Check</p>

I want to display as:

Check

am I missing something.

- Thanks for your help
Ashish

Chris Angelico

unread,
Oct 4, 2012, 7:30:53 AM10/4/12
to pytho...@python.org
On Thu, Oct 4, 2012 at 9:24 PM, <ashishj...@gmail.com> wrote:
> am I missing something.

The first thing you're missing is more detail in your question. My
crystal ball tells me you're using some kind of web framework and
viewing this in your browser. And my second crystal ball suggests that
it's probably Django. But is this correct? Lots more detail, please!

ChrisA

Ramchandra Apte

unread,
Oct 4, 2012, 9:11:56 AM10/4/12
to pytho...@python.org
+1

Ramchandra Apte

unread,
Oct 4, 2012, 9:11:56 AM10/4/12
to comp.lan...@googlegroups.com, pytho...@python.org
On Thursday, 4 October 2012 17:00:57 UTC+5:30, Chris Angelico wrote:
+1

Joel Goldstick

unread,
Oct 4, 2012, 9:19:35 AM10/4/12
to Ramchandra Apte, pytho...@python.org
On Thu, Oct 4, 2012 at 9:11 AM, Ramchandra Apte <manian...@gmail.com> wrote:
> On Thursday, 4 October 2012 17:00:57 UTC+5:30, Chris Angelico wrote:
>> On Thu, Oct 4, 2012 at 9:24 PM, <ashishj...@gmail.com> wrote:
>>
>> > am I missing something.
>>
>>
You should look at the built in django tags, and learn about them
before writing your own

In this case, look here:
https://docs.djangoproject.com/en/dev/topics/templates/#filters


striptags

Strips all [X]HTML tags. For example:

{{ value|striptags }}

If value is "<b>Joel</b> <button>is</button> a <span>slug</span>",
the output will be "Joel is a slug".

Again, these are just a few examples; see the built-in filter
reference for the complete list.



--
Joel Goldstick

ashishj...@gmail.com

unread,
Oct 5, 2012, 4:20:28 AM10/5/12
to pytho...@python.org
Hi,

Thanks for the reply.
Apologies for my question not clear. Yes I am using django framework for it.

- Regards
Ashish

ashishj...@gmail.com

unread,
Oct 5, 2012, 4:20:28 AM10/5/12
to comp.lan...@googlegroups.com, pytho...@python.org
0 new messages