1.0.5 • Published 1 year ago

bytemd-plugin-file-upload v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@bytemd/plugin-file-upload

npm

ByteMD plugin to support file upload.

Usage

import pluginFile from '@bytemd/plugin-file-upload'
import pluginFileLocales from '@bytemd/plugin-file-upload/locales/zh_Hans.json';

import { Editor } from 'bytemd'

  const uploadFile = async (file: File) => {
    // retrun  download url  
    // return await handleFile(file); 
    return ''
  };

new Editor({
  target: document.body,
  props: {
    plugins: [
       pluginFile({ locale: pluginFileLocales, uploadFile }),
      // ... other plugins
    ],
  },
})

License

MIT

1.0.5

1 year ago