diff options
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index c1c8870..6d3993f 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -574,7 +574,17 @@ else: else: print(ind*4 + "<div class=\"entry_title\">%s</div>" % title) print(ind*4 + "<div class=\"entry_date\">%s</div>" % date) + + # Read tags + tags = content.readline().strip() + if re.match(line_start_plus, tags): + tags = tags.replace("+", "") + print(ind*4 + "<div class=\"tags\"><b>Tags:</b> %s</div>" % tags) + else: + content.seek(0) + print(ind*4 + "<div class=\"entry_content\">") + for line in content: if no_break.match(line): print(ind*5 + line.strip()) |