]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Do not put <ul> into <p>
authorOleg Broytman <phd@phdru.name>
Mon, 4 Aug 2014 16:03:46 +0000 (20:03 +0400)
committerOleg Broytman <phd@phdru.name>
Wed, 23 Dec 2015 15:54:10 +0000 (18:54 +0300)
Paragraphs cannot contain block elements.

make-news.py

index ec27986262477620639d360f24b667e0aa85d508..f6929c78302ea54093506402c87e0b6bc5d589df 100755 (executable)
@@ -2,7 +2,7 @@
 # -*- coding: koi8-r -*-
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2006-2013 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2006-2014 PhiloSoft Design"
 
 import sys, os
 from news import get_news, write_if_changed
@@ -15,16 +15,14 @@ header, news_items = get_news(lang)
 new_text = [header]
 
 new_text.append("""
-<p class="head">
-   <ul>
+<ul>
 """)
 
 for item in news_items:
-   new_text.append('      <li><a href="%s">%s - %s</a></li>\n' % (item.rel_link, item.date, item.title))
+   new_text.append('   <li><a href="%s">%s - %s</a></li>\n' % (item.rel_link, item.date, item.title))
 
 new_text.append("""\
-   </ul>
-</p>
+</ul>
 
 <p class="head">
 """)