Ckeditor instalación
Fecha Publicación:
02 de Abril de 2021
Fecha Modificación:
03 de Abril de 2021
Ckeditor 5 Descarga
Url Modo Descarga: https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/installation.html
Url Descarga Directa : https://ckeditor.com/ckeditor-5/download/
Implementacion Ckeditor:
<div id="editor">
<p>Here goes the initial content of the editor.</p>
</div>
<script>
ClassicEditor
.create( document.querySelector( '#editor' ), {
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
heading: {
options: [
{ model: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph' },
{ model: 'heading1', view: 'h1', title: 'Heading 1', class: 'ck-heading_heading1' },
{ model: 'heading2', view: 'h2', title: 'Heading 2', class: 'ck-heading_heading2' }
]
}
} )
.catch( error => {
console.log( error );
} );
</script>
Articulo : 1190 - Veces Leidas