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

🐝 Ghost Image Preview in Markdown. (#615)

refs: https://github.com/TryGhost/Ghost/issues/8248
- removes the upload image button in the markdown preview.
This commit is contained in:
Ryan McCarvill 2017-04-05 03:15:30 +12:00 committed by Kevin Ansfield
parent b2d140e598
commit 1ae7a52389

View file

@ -4,7 +4,7 @@ import {htmlSafe} from 'ember-string';
import cajaSanitizers from './caja-sanitizers';
// eslint-disable-next-line new-cap
let showdown = new Showdown.converter({extensions: ['ghostimagepreview', 'ghostgfm', 'footnotes', 'highlight']});
let showdown = new Showdown.converter({extensions: ['ghostgfm', 'footnotes', 'highlight']});
export function formatMarkdown(params) {
if (!params || !params.length) {