Blazored / TextEditor

Rich text editor for Blazor applications - Uses Quill JS
MIT License
276 stars 58 forks source link

Clear links from paste #24

Closed aljaz00 closed 4 years ago

aljaz00 commented 4 years ago

Is there any way to clear links from pasted HTML?

Thanks for your answer!

ADefWebserver commented 4 years ago

See: https://github.com/quilljs/quill/issues/1821

aljaz00 commented 4 years ago

I used regular expressions to remove links on save action.

Here is the solution: QuillHTMLContent = Regex.Replace(QuillHTMLContent, @"<a\b[^>]+>([^<]*(?:(?!</a)<[^<]*)*)</a>", "$1");

Thanks for the help anyway!