Re: truncating posts with markdown

2007-09-03 Thread Ross Poulton
On Sep 3, 4:31 pm, Alex Koshelev <[EMAIL PROTECTED]> wrote: > Markdown wraps all text in tag so truncate_html doesn't work I haven't seen that either... It wraps the paragraphs in tags through, which makes sense. To truncate it, why not change the order of your filters? {{ table.fieldname|trun

Re: truncating posts with markdown

2007-09-02 Thread James Bennett
On 9/3/07, Alex Koshelev <[EMAIL PROTECTED]> wrote: > Markdown wraps all text in tag so truncate_html doesn't work ? I'm using Markdown and I've *never* seen it do that... -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~-~--~~~--

Re: truncating posts with markdown

2007-09-02 Thread Alex Koshelev
Markdown wraps all text in tag so truncate_html doesn't work --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe f

Re: truncating posts with markdown

2007-09-02 Thread SmileyChris
On Sep 3, 9:34 am, "Evan H. Carmi" <[EMAIL PROTECTED]> wrote: > Hi, > > I ran across a problem today with the list view of my blog. I am using > markdown to create html tags for my post. In the list view I use the > template tag truncate to cut off the number of words. This leaves open > the html

truncating posts with markdown

2007-09-02 Thread Evan H. Carmi
Hi, I ran across a problem today with the list view of my blog. I am using markdown to create html tags for my post. In the list view I use the template tag truncate to cut off the number of words. This leaves open the html tags that markdown created. I am wondering what ways people get around t