fix some html being escaped
This commit is contained in:
parent
59c187dcf2
commit
8137fcf0f9
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
<title>blarg.ca{{html-title|default:""}}</title>
|
<title>blarg.ca{{html-title|default:""|safe}}</title>
|
||||||
<link href="{{context}}/rss" rel="alternate" title="blarg.ca" type="application/rss+xml" />
|
<link href="{{context}}/rss" rel="alternate" title="blarg.ca" type="application/rss+xml" />
|
||||||
|
|
||||||
<link href="{{context}}/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
<link href="{{context}}/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{post.body|md-to-html}}
|
{{post.body|md-to-html|safe}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
|
|
Reference in a new issue