mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
3ac59e5ba8
refs https://github.com/TryGhost/Ghost/issues/9311 - adds the `koenig-card-hr` card that renders a `<hr>` element - adds text expansion to convert `---` into the new HR card
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
import Component from '@ember/component';
|
|
import layout from '../templates/components/koenig-card-hr';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
layout
|
|
});
|