ckeditor5-build-ckeditorfullbrazil
v1.1.0
Published
The classic editor build of CKEditor 5 – the best browser-based rich text editor. CKEditorFullBrazil
Downloads
6
Maintainers
Readme
CKEditor 5 classic editor build
** Edição para versão brasileira com adição de todas as funcionalidades existentes. Caso encontre alguma que não foi adicionada, entre em contato.
========================================
The classic editor build for CKEditor 5. Read more about the classic editor build.
Documentation
See:
- Installation for how to install this package and what it contains.
- Basic API for how to create an editor and interact with it.
- Configuration for how to configure the editor.
- Creating custom builds for how to customize the build (configure and rebuild the editor bundle).
Quick start
First, install the build from npm:
npm install --save @ckeditor/ckeditor5-build-ckeditorfullbrazil
And use it in your website: Exemplo Angular 7 ou superior
<div id="editor">
<p>This is the editor content.</p>
</div>
<div>
<ckeditor [editor]="Editor"></ckeditor>
</div>
Or in your TypeScript Angular application:
import { Component, OnInit } from '@angular/core';
import * as CKEditorBrazilFull from "./node_modules/ckeditor5-build-ckeditorfullbrazil";
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.scss']
})
export class ExampleComponent implements OnInit {
public Editor = CKEditorBrazilFull;
constructor(){}
ngOnInit() {
}
}
License
** Como foi alterado, caso eu tenha infrigido alguma parte da licensa, me avisem para correção.
Licensed under the terms of [GNU General Public License Version 3 or later] Please check the LICENSE.md
file.