Intenté instalar el ckeditor, la otra barra de herramientas está funcionando, excepto el Subrayado, ¿cómo agregamos un ckeditor angular o una barra de herramientas Subrayado?
"@ckeditor/ckeditor5-angular": "^3.0.0", "@ckeditor/ckeditor5-build-classic": "^33.0.0",
#código HTML
<ckeditor [(ngModel)]="tradeAreaNotes" [editor]="Editor" [config]="config"></ckeditor>código de configuración #ts
public Editor = ClassicEditor; config = { toolbar: [ 'undo', 'redo', '|', 'heading', 'fontFamily', 'fontSize', '|', 'bold', 'italic', 'underline', 'fontColor', 'fontBackgroundColor', 'highlight', '|', 'link', 'CKFinder', 'imageUpload', 'mediaEmbed', '|', 'alignment', 'bulletedList', 'numberedList', '|', 'indent', 'outdent', '|', 'insertTable', 'blockQuote', 'specialCharacters' ], language: 'id', image: { toolbar: [ 'imageTextAlternative', 'imageStyle:full', 'imageStyle:side' ] }, }