Markdown WYSIWYG Editor
Add aMarkdownLexical
component to your REACT application, then choose your options.
MarkdownLexicalFormatTextPlugin
to add (bold) / (italic) / (underline) and (Strikethrough) options to your editor.MarkdownLexicalUndoRedoPlugin
to add (undo) / and (redo) options to your editor.MarkdownLexicalListPlugin
to addand list options to your editor.And even more like
MarkdownLexicalQuotePlugin
,MarkdownLexicalLinkPlugin
.Or create your own plugin to add to your
MarkdownLexical
editor component.Enter some Text
<MarkdownLexical className='w-full'><MarkdownLexicalUndoRedoPlugin /><MarkdownLexicalFormatTextPlugin /><MarkdownLexicalListPlugin /><MarkdownLexicalQuotePlugin /></MarkdownLexical>
Enter some Text
<MarkdownLexical className='w-full'><MarkdownLexicalFormatTextPlugin /></MarkdownLexical>
<MarkdownLexical className='w-full'defaultMarkdownValue={"Hello **all**"}><MarkdownLexicalFormatTextPlugin /></MarkdownLexical>