Hi Syncfusion Team
I would like to have a custom option in the format dropdown that does not append any tags in the RichTextEditor, I managed to create an entry as shown below but it seems that it will contains <p> tag as default.
This is my sample code:
const format = {
default: 'Normal Text',
width: '65px',
types: [
{ text: 'Normal Text', command: 'formatBlock', subCommand: ''},
{ text: 'Paragraph' },
{ text: 'Code' },
{ text: 'Quotation' },
{ text: 'Heading 1' },
{ text: 'Heading 2' },
{ text: 'Heading 3' },
{ text: 'Heading 4' },
{ text: 'Heading 5' },
{ text: 'Heading 6' },
],
};Please assist me with the custom option that does not have any tags append
Thanks