mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
6d4d6cbc51
refs https://github.com/TryGhost/Ghost/issues/9311 - add a basic HTML card that renders a CodeMirror editor - adjust styles so that CodeMirror styles for the markdown editor don't affect CodeMirror instances inside Koenig
10 lines
304 B
JavaScript
10 lines
304 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
|
|
createComponentCard('html')
|
|
];
|