0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Removing typography extension

issue #2312

- The typography extension is still interfering in HTML blocks, reference style links and other bits and pieces it probably shouldn't be :(
- We'll add it back when it's ready.
This commit is contained in:
Hannah Wolfe 2014-03-20 12:19:52 +00:00
parent 88818104e9
commit 4c3bb83df0

View file

@ -9,7 +9,7 @@
'use strict';
var HTMLPreview = function (markdown, uploadMgr) {
var converter = new Showdown.converter({extensions: ['typography', 'ghostdown', 'github']}),
var converter = new Showdown.converter({extensions: ['ghostdown', 'github']}),
preview = document.getElementsByClassName('rendered-markdown')[0],
update;