mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
e422f0bcba
Integrated Ghost-Editor as an in-repo addon. Moved CSS to /app/styles/addons/ghost-editor/ Still a WIP.
13 lines
336 B
JavaScript
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;
|