Ghost/core/server/lib/mobiledoc/cards/card-markdown.js
kirrg001 5f5f0021db 🔥 Drop Node v4 Support
no issue

- support ends today
- see https://github.com/nodejs/Release
- removed `use strict`
2018-05-01 14:06:18 +02:00

6 lines
268 B
JavaScript

// 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');
module.exports = Object.assign({}, markdownCard, {name: 'card-markdown'});