Use the CKEditor within your Elm app via web components.
It is required to set up webcomponent-ckeditor and necessary polyfills first.
Demo: https://mazechazer.gitlab.io/elm-ckeditor/
view : Model -> Html Msg
view model =
ckeditor
[ config model.config
, content model.content
, onCKEditorChange CKEditorChanged
]
[]