Ghost/ghost/admin/lib/koenig-editor/addon/templates/components/koenig-caption-input.hbs
Kevin Ansfield 83924194f5 Koenig - Added rich-text support to captions
refs https://github.com/TryGhost/Ghost/issues/9724
- added `{{koenig-basic-html-input}}` component
  - uses a stripped down version of Koenig
  - supports all inline formatting that Koenig supports
  - supports inline text expansions
  - supports inline key commands
  - limited to a single paragraph
  - serialises and deserialises from HTML rather than mobiledoc
- updated `{{koenig-caption-input}}` to use `{{koenig-basic-html-input}}`
- updated image and embed cards to calculate word counts correctly for html captions
- bumped Spirit dependency to fix styling of toolbars within the editor canvas
- fixed positioning in toolbar components to account for `parentElement` not necessarily being the closest element to position against
2018-08-08 13:38:41 +01:00

11 lines
357 B
Handlebars

{{koenig-basic-html-input
html=caption
placeholder=(if isFocused "" placeholder)
class="miw-100 tc bn form-text bg-transparent"
name="caption"
onChange=(action update)
onFocus=(action (mut isFocused) true)
onBlur=(action (mut isFocused) false)
onNewline=(action "handleEnter")
didCreateEditor=(action "registerEditor")
}}