annotate gpp/templates/comments/markdown_preview.html @ 132:06503edcc56b

A previous commit broke the comment preview function. Fixing this now.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Nov 2009 22:51:07 +0000
parents dbd703f7d63a
children d203a4a986d2
rev   line source
gremmie@1 1 {% load markup %}
gremmie@1 2 {% load smiley_tags %}
gremmie@1 3 <?xml version="1.0" encoding="UTF-8"?>
gremmie@1 4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
gremmie@1 5 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
gremmie@1 6 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
gremmie@1 7 <head>
gremmie@1 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
gremmie@1 9 <title>Markdown Preview</title>
gremmie@1 10 <link rel="stylesheet" type="text/css" href="~/templates/preview.css" />
gremmie@1 11 </head>
bgneal@132 12 {{ data|smiley_markdown|markdown:"safe" }}
gremmie@1 13 </body>
gremmie@1 14 </html>