-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload file plugin #23
Comments
Does |
No it does not. But I guess I can write a plugin to accept any file type. |
Yeah, it is easy to write your own plugin. Just curious about what this use case is |
Yes I guess I will use image plugin. There are many other ways to do files which are easier. |
As image uploading is a very common feature in practice, we make it built-in in the latest version: <Editor
uploadImages={async (files) => {
// upload images to your server
return [
{
url: '',
alt: '', // optional
title: '' // optional
}
]
})
/>
|
We also need a file upload feature. We'll look into custom plugin (as stated, it's not that different of the image upload plugin). The use case is enable users to upload a file and generate a link to this file in the document.= |
bytemd needs an upload file plugin.
The text was updated successfully, but these errors were encountered: