Look at the link
Someone would know how to disable or remove the image upload button
Look at the link
Someone would know how to disable or remove the image upload button
According to documentation
Editor provides a default toolbar with common options, to customize it define your elements inside the
header
element.
Translating
Editor provides a standard toolbar with common options, to customize it, define its elements within the element
header
For example
<p-editor name="custom" [(ngModel)]="customtext" styleClass="editor-dimensions">
<p-header>
<span class="ql-formats">
<button class="ql-bold"></button>
<button class="ql-italic"></button>
<button class="ql-underline"></button>
<button class="ql-clean"></button>
</span>
</p-header>
</p-editor>
Will render as
Ifyouwantahigherlevelofcustomization,readthe Quill toolbar documentation, which is what PrimeNG uses.