0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/lib/mobiledoc/cards/card-markdown.js

9 lines
332 B
JavaScript
Raw Normal View History

// this card is just an alias of the `markdown` card which is necessary because
// our markdown-only editor was using the `card-markdown` card name
const markdownCard = require('./markdown');
const createCard = require('../create-card');
module.exports = createCard(
Object.assign({}, markdownCard, {name: 'card-markdown'})
);