I'm looking for an HTML-editor to embed in an Angular7 project. The user of the editor will be creating very simple web pages or making small edits to more complex pages. I originally thought a WYSISYG editor might do the trick but I'm finding out they aren't great for making edits to the source HTML. Does anyone have recommendations?
Here's a list of what I've considered so far:
Any suggestions that I may have overlooked?
Rich Text Editor for angular using ProseMirror.
WYSIWYG (pronounced wiz-ee-wig) is a type of editing software that allows users to see and edit content in a form that appears as it would when displayed on an interface, webpage, slide presentation or printed document. WYSIWYG is an acronym for "what you see is what you get."
Look no further -- I can really recommend CodeMirror :)
It's a very powerful but lightweight JS text editor which can be embedded in your html page and has a bunch of features such as..
..and it also supports HTML markup
my favorite feature is the autocompletion support -- like in your IDE you can use ctrl-space to autocomplete. You can try this feature here with the HTML example
disclaimer: I'm not a contributor to the project, but I have used it in some projects myself and would consider myself a fanboy.
this is the best way to implement text editor with angular easy simple and perfect work it,s work for me if any one need follow these lines of code
npm install @syncfusion/ej2-angular-richtexteditor --save
second step include the above library in app.module.ts like this
import { RichTextEditorAllModule } from '@syncfusion/ej2-angular-richtexteditor';
@NgModule({
declarations: [
AppComponent
],
imports: [
RichTextEditorAllModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
and then in component view page use this line
<ejs-richtexteditor></ejs-richtexteditor>
this is result of the above text editor library
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With