mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
d25fb1597e
refs https://github.com/TryGhost/Ghost/issues/9311 - adds the `koenig-card-image` card that renders an `<img>` element - adds text expansion to convert markdown images into the new image card
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
import Component from '@ember/component';
|
|
import layout from '../templates/components/koenig-card-image';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
layout
|
|
});
|