mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-02 15:44:28 -06:00
Accept APNG for image uploads
This commit is contained in:
parent
c311bfa6b0
commit
146a5e3fb1
@ -917,7 +917,7 @@ function afterImageUploaded(editor, url) {
|
||||
var ext = imageName.substring(imageName.lastIndexOf('.') + 1).replace(/\?.*$/, '').toLowerCase();
|
||||
|
||||
// Check if media is an image
|
||||
if (['png', 'jpg', 'jpeg', 'gif', 'svg', 'avif', 'webp'].includes(ext)) {
|
||||
if (['png', 'jpg', 'jpeg', 'gif', 'svg', 'apng', 'avif', 'webp'].includes(ext)) {
|
||||
_replaceSelection(cm, stat.image, options.insertTexts.uploadedImage, url);
|
||||
} else {
|
||||
var text_link = options.insertTexts.link;
|
||||
|
Loading…
x
Reference in New Issue
Block a user