Ghost/ghost/admin/lib/ghost-editor/addon/cards/index.js
Ryan McCarvill e422f0bcba 👷🏻‍♀️🚧👷 Ghost-Editor integration.
Integrated Ghost-Editor as an in-repo addon.
Moved CSS to /app/styles/addons/ghost-editor/

Still a WIP.
2017-03-02 09:56:51 +00:00

13 lines
336 B
JavaScript

import htmlCard from 'ghost-editor/cards/html-card_dom';
import imageCard from 'ghost-editor/cards/image-card_dom';
import markdownCard from 'ghost-editor/cards/markdown-card_dom';
let cards = [];
[htmlCard, imageCard, markdownCard].forEach(_card => {
_card.type = 'dom';
cards.push(_card);
});
export default cards;