I have configure CKEditor 5 for my project as below:
Html:
<input type="text" class="form-control question_input" placeholder="Question" autocomplete="off">
JavaScript:
InlineEditor
.create( document.querySelector( '.question_input' ) )
.catch( error => {
console.error( error );
} );
It is initiating CKEditor on input but I am not able to use the features of CKEditor like bold, italic etc.
Thanks.