Ghost/ghost/admin/lib/koenig-editor/addon/options/cards.js
Kevin Ansfield 2cef2a4f1e Koenig - Move to generic card names
refs https://github.com/TryGhost/Ghost/issues/9311
- use `hr`, `image`, and `markdown` as card names instead of codifying the `koenig-card-` prefix into the mobiledoc
2018-02-01 12:26:24 +01:00

9 lines
271 B
JavaScript

import createComponentCard from '../utils/create-component-card';
export default [
createComponentCard('hr'),
createComponentCard('image'),
createComponentCard('markdown'),
createComponentCard('card-markdown') // backwards-compat with markdown editor
];