mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
2cef2a4f1e
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
9 lines
271 B
JavaScript
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
|
|
];
|