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/index.js
Kevin Ansfield 05bcf7ee6a Fixed missing export of card-markdown card
no issue
- fixes the bug introduced in 0833b28557
2018-02-01 15:50:43 +01:00

7 lines
234 B
JavaScript

var hr = require('./hr'),
html = require('./html'),
image = require('./image'),
markdown = require('./markdown'),
cardMarkdown = require('./card-markdown');
module.exports = [hr, html, image, markdown, cardMarkdown];