0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/server/lib/mobiledoc/cards/hr.js
Kevin Ansfield 0833b28557 Koenig - Rename server-side cards
refs https://github.com/TryGhost/Ghost/issues/9311
- match card names to the new generic Koenig card names introduced in 95a068615d
2018-02-01 12:40:49 +01:00

7 lines
129 B
JavaScript

module.exports = {
name: 'hr',
type: 'dom',
render(opts) {
return opts.env.dom.createElement('hr');
}
};