mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
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
This commit is contained in:
parent
c3d49021da
commit
26199e56fa
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
|||
|
||||
<section class="content-preview-content">
|
||||
<div class="wrapper">
|
||||
<h1>{{title}}</h1>
|
||||
{{gh-format-markdown markdown}}
|
||||
<h1>{{{title}}}</h1>
|
||||
{{{html}}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue