From a03a0046aba40892b652e5a0cd6c370401e27687 Mon Sep 17 00:00:00 2001 From: David Arvelo Date: Sat, 7 Jun 2014 14:19:42 -0400 Subject: [PATCH] Fix HTML preview rendering on the main screen closes #2904 - The `posts/post` template now takes its HTML from the post model instead of using the editor's markdown component --- ghost/admin/templates/posts/post.hbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/templates/posts/post.hbs b/ghost/admin/templates/posts/post.hbs index 319a5a7e1e..422c231da1 100644 --- a/ghost/admin/templates/posts/post.hbs +++ b/ghost/admin/templates/posts/post.hbs @@ -4,8 +4,8 @@
-

{{title}}

- {{gh-format-markdown markdown}} +

{{{title}}}

+ {{{html}}}