Repository: modstart-lib/ueditor-plus
Branch: master
Commit: 189c08b30f02
Files: 505
Total size: 7.1 MB
Directory structure:
gitextract_jbuiie7d/
├── .babelrc
├── .editorconfig
├── .gitee/
│ └── ISSUE_TEMPLATE/
│ ├── bug.yml
│ ├── config.yml
│ └── feature.yml
├── .gitignore
├── .nvmrc
├── Gruntfile.js
├── LICENSE
├── Makefile
├── README.md
├── _demo_server/
│ └── handle.php
├── _examples/
│ ├── addCustomizeButton.js
│ ├── addCustomizeCombox.js
│ ├── addCustomizeDialog.js
│ ├── bugTest.html
│ ├── completeDemo.html
│ ├── customPluginDemo.html
│ ├── customToolbarDemo.html
│ ├── customizeDialogPage.html
│ ├── customizeToolbarUIDemo.html
│ ├── editor_api.js
│ ├── example.js
│ ├── filterRuleDemo.html
│ ├── highlightDemo.html
│ ├── index.html
│ ├── jqueryCompleteDemo.html
│ ├── jqueryValidation.html
│ ├── multiDemo.html
│ ├── multiEditorWithOneInstance.html
│ ├── renderInTable.html
│ ├── resetDemo.html
│ ├── sectionDemo.html
│ ├── setWidthHeightDemo.html
│ ├── simpleDemo.html
│ ├── sortableDemo.html
│ ├── style.css
│ ├── submitFormDemo.html
│ ├── textareaDemo.html
│ └── uparsedemo.html
├── _examples-integrate/
│ ├── reactx/
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── public/
│ │ │ ├── index.html
│ │ │ ├── manifest.json
│ │ │ ├── robots.txt
│ │ │ └── static/
│ │ │ └── UEditorPlus/
│ │ │ ├── dialogs/
│ │ │ │ ├── anchor/
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment/
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ └── attachment.js
│ │ │ │ ├── audio/
│ │ │ │ │ ├── audio.css
│ │ │ │ │ ├── audio.html
│ │ │ │ │ └── audio.js
│ │ │ │ ├── background/
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ └── background.js
│ │ │ │ ├── contentimport/
│ │ │ │ │ ├── contentimport.html
│ │ │ │ │ └── contentimport.js
│ │ │ │ ├── emotion/
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ └── emotion.js
│ │ │ │ ├── formula/
│ │ │ │ │ ├── formula.html
│ │ │ │ │ └── formula.js
│ │ │ │ ├── help/
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image/
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ └── image.js
│ │ │ │ ├── insertframe/
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link/
│ │ │ │ │ └── link.html
│ │ │ │ ├── preview/
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl/
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace/
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── spechars/
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table/
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template/
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video/
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ └── wordimage/
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── index.html
│ │ │ ├── lang/
│ │ │ │ ├── en/
│ │ │ │ │ └── en.js
│ │ │ │ └── zh-cn/
│ │ │ │ └── zh-cn.js
│ │ │ ├── plugins/
│ │ │ │ └── demo/
│ │ │ │ └── demo.js
│ │ │ ├── themes/
│ │ │ │ ├── default/
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── ueditor.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ └── dialogbase.css
│ │ │ │ └── iframe.css
│ │ │ ├── third-party/
│ │ │ │ ├── SyntaxHighlighter/
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shCoreDefault.css
│ │ │ │ ├── clipboard/
│ │ │ │ │ ├── clipboard.js
│ │ │ │ │ └── clipboard.swf
│ │ │ │ ├── codemirror/
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── webuploader/
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ └── webuploader.js
│ │ │ │ └── zeroclipboard/
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.js
│ │ │ ├── ueditor.config.js
│ │ │ └── ueditor.parse.js
│ │ └── src/
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── reportWebVitals.js
│ │ └── setupTests.js
│ ├── vue2/
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── babel.config.js
│ │ ├── jsconfig.json
│ │ ├── package.json
│ │ ├── public/
│ │ │ ├── index.html
│ │ │ └── static/
│ │ │ └── UEditorPlus/
│ │ │ ├── dialogs/
│ │ │ │ ├── anchor/
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment/
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ └── attachment.js
│ │ │ │ ├── audio/
│ │ │ │ │ ├── audio.css
│ │ │ │ │ ├── audio.html
│ │ │ │ │ └── audio.js
│ │ │ │ ├── background/
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ └── background.js
│ │ │ │ ├── contentimport/
│ │ │ │ │ ├── contentimport.html
│ │ │ │ │ └── contentimport.js
│ │ │ │ ├── emotion/
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ └── emotion.js
│ │ │ │ ├── formula/
│ │ │ │ │ ├── formula.html
│ │ │ │ │ └── formula.js
│ │ │ │ ├── help/
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image/
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ └── image.js
│ │ │ │ ├── insertframe/
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link/
│ │ │ │ │ └── link.html
│ │ │ │ ├── preview/
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl/
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace/
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── spechars/
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table/
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template/
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video/
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ └── wordimage/
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── index.html
│ │ │ ├── lang/
│ │ │ │ ├── en/
│ │ │ │ │ └── en.js
│ │ │ │ └── zh-cn/
│ │ │ │ └── zh-cn.js
│ │ │ ├── plugins/
│ │ │ │ └── demo/
│ │ │ │ └── demo.js
│ │ │ ├── themes/
│ │ │ │ ├── default/
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── ueditor.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ └── dialogbase.css
│ │ │ │ └── iframe.css
│ │ │ ├── third-party/
│ │ │ │ ├── SyntaxHighlighter/
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shCoreDefault.css
│ │ │ │ ├── clipboard/
│ │ │ │ │ └── clipboard.js
│ │ │ │ ├── codemirror/
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── webuploader/
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ └── webuploader.js
│ │ │ │ └── zeroclipboard/
│ │ │ │ └── ZeroClipboard.js
│ │ │ ├── ueditor.all.js
│ │ │ ├── ueditor.config.js
│ │ │ └── ueditor.parse.js
│ │ ├── src/
│ │ │ ├── App.vue
│ │ │ └── main.js
│ │ └── vue.config.js
│ └── vue3/
│ ├── .gitignore
│ ├── README.md
│ ├── babel.config.js
│ ├── jsconfig.json
│ ├── package.json
│ ├── public/
│ │ ├── index.html
│ │ └── static/
│ │ └── UEditorPlus/
│ │ ├── dialogs/
│ │ │ ├── anchor/
│ │ │ │ └── anchor.html
│ │ │ ├── attachment/
│ │ │ │ ├── attachment.css
│ │ │ │ ├── attachment.html
│ │ │ │ └── attachment.js
│ │ │ ├── audio/
│ │ │ │ ├── audio.css
│ │ │ │ ├── audio.html
│ │ │ │ └── audio.js
│ │ │ ├── background/
│ │ │ │ ├── background.css
│ │ │ │ ├── background.html
│ │ │ │ └── background.js
│ │ │ ├── contentimport/
│ │ │ │ ├── contentimport.html
│ │ │ │ └── contentimport.js
│ │ │ ├── emotion/
│ │ │ │ ├── emotion.css
│ │ │ │ ├── emotion.html
│ │ │ │ └── emotion.js
│ │ │ ├── formula/
│ │ │ │ ├── formula.html
│ │ │ │ └── formula.js
│ │ │ ├── help/
│ │ │ │ ├── help.css
│ │ │ │ ├── help.html
│ │ │ │ └── help.js
│ │ │ ├── image/
│ │ │ │ ├── image.css
│ │ │ │ ├── image.html
│ │ │ │ └── image.js
│ │ │ ├── insertframe/
│ │ │ │ └── insertframe.html
│ │ │ ├── internal.js
│ │ │ ├── link/
│ │ │ │ └── link.html
│ │ │ ├── preview/
│ │ │ │ └── preview.html
│ │ │ ├── scrawl/
│ │ │ │ ├── scrawl.css
│ │ │ │ ├── scrawl.html
│ │ │ │ └── scrawl.js
│ │ │ ├── searchreplace/
│ │ │ │ ├── searchreplace.html
│ │ │ │ └── searchreplace.js
│ │ │ ├── spechars/
│ │ │ │ ├── spechars.html
│ │ │ │ └── spechars.js
│ │ │ ├── table/
│ │ │ │ ├── edittable.css
│ │ │ │ ├── edittable.html
│ │ │ │ ├── edittable.js
│ │ │ │ ├── edittd.html
│ │ │ │ └── edittip.html
│ │ │ ├── template/
│ │ │ │ ├── config.js
│ │ │ │ ├── template.css
│ │ │ │ ├── template.html
│ │ │ │ └── template.js
│ │ │ ├── video/
│ │ │ │ ├── video.css
│ │ │ │ ├── video.html
│ │ │ │ └── video.js
│ │ │ └── wordimage/
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ │ ├── index.html
│ │ ├── lang/
│ │ │ ├── en/
│ │ │ │ └── en.js
│ │ │ └── zh-cn/
│ │ │ └── zh-cn.js
│ │ ├── plugins/
│ │ │ └── demo/
│ │ │ └── demo.js
│ │ ├── themes/
│ │ │ ├── default/
│ │ │ │ ├── css/
│ │ │ │ │ └── ueditor.css
│ │ │ │ ├── dialog.css
│ │ │ │ └── dialogbase.css
│ │ │ └── iframe.css
│ │ ├── third-party/
│ │ │ ├── SyntaxHighlighter/
│ │ │ │ ├── shCore.js
│ │ │ │ └── shCoreDefault.css
│ │ │ ├── clipboard/
│ │ │ │ └── clipboard.js
│ │ │ ├── codemirror/
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── webuploader/
│ │ │ │ ├── webuploader.css
│ │ │ │ └── webuploader.js
│ │ │ └── zeroclipboard/
│ │ │ └── ZeroClipboard.js
│ │ ├── ueditor.all.js
│ │ ├── ueditor.config.js
│ │ └── ueditor.parse.js
│ ├── src/
│ │ ├── App.vue
│ │ └── main.js
│ └── vue.config.js
├── _parse/
│ ├── background.js
│ ├── insertcode.js
│ ├── list.js
│ ├── parse.js
│ └── table.js
├── _src/
│ ├── adapter/
│ │ ├── editor.js
│ │ ├── editorui.js
│ │ └── message.js
│ ├── api.js
│ ├── core/
│ │ ├── Editor.defaultoptions.js
│ │ ├── Editor.js
│ │ ├── EventBase.js
│ │ ├── Range.js
│ │ ├── Selection.js
│ │ ├── ajax.js
│ │ ├── api.js
│ │ ├── browser.js
│ │ ├── dialog.js
│ │ ├── domUtils.js
│ │ ├── dtd.js
│ │ ├── filternode.js
│ │ ├── filterword.js
│ │ ├── htmlparser.js
│ │ ├── image.js
│ │ ├── keymap.js
│ │ ├── loadconfig.js
│ │ ├── localstorage.js
│ │ ├── node.js
│ │ ├── plugin.js
│ │ └── utils.js
│ ├── editor.js
│ ├── plugins/
│ │ ├── anchor.js
│ │ ├── audio.js
│ │ ├── autofloat.js
│ │ ├── autoheight.js
│ │ ├── autolink.js
│ │ ├── autosave.js
│ │ ├── autosubmit.js
│ │ ├── autotypeset.js
│ │ ├── autoupload.js
│ │ ├── background.js
│ │ ├── basestyle.js
│ │ ├── blockquote.js
│ │ ├── catchremoteimage.js
│ │ ├── cleardoc.js
│ │ ├── contextmenu.js
│ │ ├── convertcase.js
│ │ ├── copy.js
│ │ ├── customstyle.js
│ │ ├── defaultfilter.js
│ │ ├── directionality.js
│ │ ├── dragdrop.js
│ │ ├── elementpath.js
│ │ ├── enterkey.js
│ │ ├── fiximgclick.js
│ │ ├── font.js
│ │ ├── formatmatch.js
│ │ ├── formula.js
│ │ ├── horizontal.js
│ │ ├── iframe.js
│ │ ├── image.js
│ │ ├── indent.js
│ │ ├── insertcode.js
│ │ ├── insertfile.js
│ │ ├── inserthtml.js
│ │ ├── insertparagraph.js
│ │ ├── justify.js
│ │ ├── keystrokes.js
│ │ ├── letterspacing.js
│ │ ├── lineheight.js
│ │ ├── link.js
│ │ ├── list.js
│ │ ├── markdown-shortcut.js
│ │ ├── pagebreak.js
│ │ ├── paragraph.js
│ │ ├── paste.js
│ │ ├── preview.js
│ │ ├── print.js
│ │ ├── puretxtpaste.js
│ │ ├── quick-operate.js
│ │ ├── removeformat.js
│ │ ├── rowspacing.js
│ │ ├── scrawl.js
│ │ ├── searchreplace.js
│ │ ├── section.js
│ │ ├── selectall.js
│ │ ├── serverparam.js
│ │ ├── shortcutmenu.js
│ │ ├── simpleupload.js
│ │ ├── source.js
│ │ ├── table.action.js
│ │ ├── table.cmds.js
│ │ ├── table.core.js
│ │ ├── table.sort.js
│ │ ├── template.js
│ │ ├── time.js
│ │ ├── undo.js
│ │ ├── video.js
│ │ ├── wordcount.js
│ │ └── wordimage.js
│ └── ui/
│ ├── autotypesetbutton.js
│ ├── autotypesetpicker.js
│ ├── breakline.js
│ ├── button.js
│ ├── cellalignpicker.js
│ ├── colorbutton.js
│ ├── colorpicker.js
│ ├── combox.js
│ ├── dialog.js
│ ├── mask.js
│ ├── menu.js
│ ├── menubutton.js
│ ├── message.js
│ ├── multiMenu.js
│ ├── pastepicker.js
│ ├── popup.js
│ ├── quick-operate.js
│ ├── separator.js
│ ├── shortcutmenu.js
│ ├── splitbutton.js
│ ├── stateful.js
│ ├── tablebutton.js
│ ├── tablepicker.js
│ ├── toolbar.js
│ ├── ui.js
│ ├── uibase.js
│ └── uiutils.js
├── dialogs/
│ ├── ai/
│ │ ├── ai.html
│ │ └── ai.js
│ ├── anchor/
│ │ └── anchor.html
│ ├── attachment/
│ │ ├── attachment.css
│ │ ├── attachment.html
│ │ └── attachment.js
│ ├── audio/
│ │ ├── audio.css
│ │ ├── audio.html
│ │ └── audio.js
│ ├── background/
│ │ ├── background.css
│ │ ├── background.html
│ │ └── background.js
│ ├── contentimport/
│ │ ├── contentimport.html
│ │ └── contentimport.js
│ ├── emotion/
│ │ ├── emotion.css
│ │ ├── emotion.html
│ │ └── emotion.js
│ ├── formula/
│ │ ├── formula.html
│ │ └── formula.js
│ ├── help/
│ │ ├── help.css
│ │ ├── help.html
│ │ └── help.js
│ ├── image/
│ │ ├── image.css
│ │ ├── image.html
│ │ └── image.js
│ ├── insertframe/
│ │ └── insertframe.html
│ ├── internal.js
│ ├── link/
│ │ └── link.html
│ ├── preview/
│ │ └── preview.html
│ ├── scrawl/
│ │ ├── scrawl.css
│ │ ├── scrawl.html
│ │ └── scrawl.js
│ ├── searchreplace/
│ │ ├── searchreplace.html
│ │ └── searchreplace.js
│ ├── spechars/
│ │ ├── spechars.html
│ │ └── spechars.js
│ ├── table/
│ │ ├── edittable.css
│ │ ├── edittable.html
│ │ ├── edittable.js
│ │ ├── edittd.html
│ │ └── edittip.html
│ ├── template/
│ │ ├── config.js
│ │ ├── template.css
│ │ ├── template.html
│ │ └── template.js
│ ├── video/
│ │ ├── video.css
│ │ ├── video.html
│ │ └── video.js
│ └── wordimage/
│ ├── wordimage.html
│ └── wordimage.js
├── lang/
│ ├── en/
│ │ └── en.js
│ └── zh-cn/
│ └── zh-cn.js
├── package.json
├── plugins/
│ └── demo/
│ └── demo.js
├── scripts/
│ └── postBuild.js
├── themes/
│ ├── default/
│ │ ├── _css/
│ │ │ ├── autotypesetpicker.css
│ │ │ ├── button.css
│ │ │ ├── buttonicon.css
│ │ │ ├── cellalignpicker.css
│ │ │ ├── colorbutton.css
│ │ │ ├── colorpicker.css
│ │ │ ├── combox.css
│ │ │ ├── contextmenu.css
│ │ │ ├── dialog.css
│ │ │ ├── editor.css
│ │ │ ├── menu.css
│ │ │ ├── menubutton.css
│ │ │ ├── message.css
│ │ │ ├── multiMenu.css
│ │ │ ├── paragraphpicker.css
│ │ │ ├── pastepicker.css
│ │ │ ├── popup.css
│ │ │ ├── quick-operate.css
│ │ │ ├── separtor.css
│ │ │ ├── shortcutmenu.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tablepicker.css
│ │ │ ├── toolbar.css
│ │ │ ├── ueditor.css
│ │ │ ├── uibase.css
│ │ │ └── uibase.less
│ │ ├── dialog.css
│ │ ├── dialog.less
│ │ ├── dialogbase.css
│ │ └── font/
│ │ └── iconfont.less
│ └── iframe.css
├── third-party/
│ ├── SyntaxHighlighter/
│ │ ├── shCore.js
│ │ └── shCoreDefault.css
│ ├── clipboard/
│ │ ├── clipboard.js
│ │ └── clipboard.swf
│ ├── codemirror/
│ │ ├── codemirror.css
│ │ └── codemirror.js
│ ├── jquery-1.10.2.js
│ ├── showdown.js
│ ├── vue.js
│ ├── webuploader/
│ │ ├── webuploader.css
│ │ └── webuploader.js
│ └── zeroclipboard/
│ ├── ZeroClipboard.js
│ └── ZeroClipboard.swf
├── ueditor.config.js
└── ueditor.parse.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .babelrc
================================================
{
"presets": ["@babel/preset-env"]
}
================================================
FILE: .editorconfig
================================================
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
[*.{html, js, css, less, scss, xml}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.yml]
indent_style = space
indent_size = 4
================================================
FILE: .gitee/ISSUE_TEMPLATE/bug.yml
================================================
name: Bug 反馈
description: 当你在代码中发现了一个 Bug,导致应用崩溃或抛出异常,或者有一个组件存在问题,或者某些地方看起来不对劲。
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
感谢对项目的支持与关注。在提出问题之前,请确保你已查看相关开发或使用文档:
- https://open.modstart.com/ueditor-plus
- type: textarea
attributes:
label: 如何复现
description: 请搭建一个最小可复现的 Demo 压缩为 zip 发送到 modstart@163.com ,否则我们提交的问题可能会被关闭。
placeholder: 请搭建一个最小可复现的 Demo 压缩为 zip 发送到 modstart@163.com ,否则我们提交的问题可能会被关闭。
validations:
required: true
================================================
FILE: .gitee/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: UEditorPlus 文档中心
url: https://open.modstart.com/ueditor-plus
about: 提供基本功能使用、介绍和常见问题解答
================================================
FILE: .gitee/ISSUE_TEMPLATE/feature.yml
================================================
name: 功能建议
description: 对本项目提出一个功能建议
title: "[功能建议]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
感谢提出功能建议,我们将仔细考虑!
- type: textarea
id: related-problem
attributes:
label: 你的功能建议是否和某个问题相关?
description: 清晰并简洁地描述问题是什么,例如,当我...时,我总是感到困扰。
validations:
required: false
- type: textarea
id: desired-solution
attributes:
label: 你希望看到什么解决方案?
description: 清晰并简洁地描述你希望发生的事情。
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: 你考虑过哪些替代方案?
description: 清晰并简洁地描述你考虑过的任何替代解决方案或功能。
validations:
required: false
- type: textarea
id: additional-context
attributes:
label: 你有其他上下文或截图吗?
description: 在此处添加有关功能请求的任何其他上下文或截图。
validations:
required: false
- type: checkboxes
attributes:
label: 意向参与贡献
options:
- label: 我有意向参与具体功能的开发实现并将代码贡献回到上游社区
required: false
================================================
FILE: .gitignore
================================================
###############
# folder #
###############
.idea
log
jsp/upload
php/upload
net/upload
asp/upload
node/upload
ref/
_deleted/
###############
# fixed file #
###############
*.pptx
*.doc
*.docx
*.xml
/doc/
/dist/
/dist-min/
#################
## Eclipse
#################
*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
#################
## Visual Studio
#################
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover
## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
# Visual Studio profiler
*.psess
*.vsp
# ReSharper is a .NET coding add-in
_ReSharper*
# Installshield output folder
[Ee]xpress
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish
# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects
# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
############
## Windows
############
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
#############
## Python
#############
*.py[co]
# Packages
*.egg
*.egg-info
eggs
parts
# bin
var
sdist
develop-eggs
.installed.cfg
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
#Translations
*.mo
#Mr Developer
.mr.developer.cfg
# Mac crap
.DS_Store
/node_modules
/.github/
/AGENTS.md
/openspec/
================================================
FILE: .nvmrc
================================================
14
================================================
FILE: Gruntfile.js
================================================
"use strict";
module.exports = function (grunt) {
var fs = require("fs"),
Util = {
jsBasePath: "_src/",
parseBasePath: "_parse/",
cssBasePath: "themes/default/_css/",
fetchScripts: function (readFile, basePath) {
var sources = fs.readFileSync(readFile);
sources = /\[([^\]]+\.js'[^\]]+)\]/.exec(sources);
sources = sources[1]
.replace(/\/\/.*\n/g, "\n")
.replace(/'|"|\n|\t|\s/g, "");
sources = sources.split(",").filter(o => o);
sources.forEach(function (filepath, index) {
sources[index] = basePath + filepath;
});
return sources;
},
fetchStyles: function () {
var sources = fs.readFileSync(this.cssBasePath + "ueditor.css"),
filepath = null,
pattern = /@import\s+([^;]+)*;/g,
src = [];
while ((filepath = pattern.exec(sources))) {
src.push(this.cssBasePath + filepath[1].replace(/'|"/g, ""));
}
return src;
}
},
packageJson = grunt.file.readJSON("package.json"),
distDir = "dist/",
distMinDir = "dist-min/",
banner = "/*! " + packageJson.title + " v" + packageJson.version + "*/\n";
//init
(function () {
distDir = "dist/";
})();
var dateHash = (new Date()).getTime();
grunt.initConfig({
pkg: packageJson,
concat: {
js: {
options: {
banner: "/*!\n * " +
packageJson.title +
"\n * version: " +
packageJson.version +
"\n*/\n(function(){\n\n",
footer: "\n\n})();\n",
process: function (src, s) {
var filename = s.substr(s.indexOf("/") + 1);
return (
"// " + filename + "\n" + src.replace("/_css/", "/css/") + "\n"
);
}
},
src: Util.fetchScripts("_examples/editor_api.js", Util.jsBasePath),
dest: distDir + "ueditor.all.js"
},
parse: {
options: {
banner: "/*!\n * " +
packageJson.title +
" parse\n * version: " +
packageJson.version +
"\n*/\n(function(){\n\n",
footer: "\n\n})();\n"
},
src: Util.fetchScripts("ueditor.parse.js", Util.parseBasePath),
dest: distDir + "ueditor.parse.js"
},
css: {
src: Util.fetchStyles(),
dest: distDir + "themes/default/css/ueditor.css"
}
},
cssmin: {
options: {
banner: banner
},
files: {
cwd: distDir,
src: [
'**/*.css',
],
dest: distMinDir,
expand: true
}
},
uglify: {
options: {
banner: banner
},
files: {
cwd: distDir,
src: [
'**/*.js',
'!third-party/zeroclipboard/ZeroClipboard.js',
'!dialogs/ai/ai.js',
'!ueditor.all.js',
],
dest: distMinDir,
expand: true
},
},
copy: {
base: {
files: [
{
src: [
"*.html",
"themes/iframe.css",
"themes/default/dialog.css",
"themes/default/dialogbase.css",
"themes/default/images/**",
"themes/default/exts/**",
// "themes/default/font/**",
"dialogs/**",
"lang/**",
"third-party/**",
"plugins/**",
],
dest: distDir
}
]
},
dist: {
files: [
{
cwd: distDir,
src: '**/*',
dest: distMinDir,
expand: true
}
]
},
demo: {
files: [
{
src: "_examples/completeDemo.html",
dest: distDir + "index.html"
}
]
},
},
transcoding: {
options: {
charset: 'utf-8'
},
src: [
distDir + "**/*.html",
distDir + "**/*.js",
distDir + "**/*.css",
distDir + "**/*.json",
]
},
replace: {
demo: {
src: distDir + "index.html",
overwrite: true,
replacements: [
{
from: /\.\.\//gi,
to: ""
},
{
from: "editor_api.js",
to: "ueditor.all.js"
}
]
},
},
clean: {
build: {
src: [
distDir + ".DS_Store",
distDir + "**/.DS_Store",
distDir + ".git",
distDir + "**/.git"
]
}
}
});
grunt.loadNpmTasks("grunt-text-replace");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-cssmin");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-transcoding");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.registerTask("default", "UEditor build", function () {
var tasks = [
"concat",
"copy:base",
"copy:demo",
"replace:demo",
"copy:dist",
"uglify:files",
"cssmin:files",
"clean"
];
tasks.push("transcoding");
//config修改
updateConfigFile();
grunt.task.run(tasks);
});
function updateConfigFile() {
var filename = "ueditor.config.js",
file = grunt.file.read(filename);
//写入到dist
if (grunt.file.write(distDir + filename, file)) {
grunt.log.writeln("config file update success");
} else {
grunt.log.warn("config file update error");
}
}
};
================================================
FILE: LICENSE
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising
permissions granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that
is based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work
by the copyright owner or by an individual or Legal Entity authorized to submit
on behalf of the copyright owner. For the purposes of this definition,
"submitted" means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems, and
issue tracking systems that are managed by, or on behalf of, the Licensor for
the purpose of discussing and improving the Work, but excluding communication
that is conspicuously marked or otherwise designated in writing by the copyright
owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
of whom a Contribution has been received by Licensor and subsequently
incorporated within the Work.
2. Grant of Copyright License.
Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the Work and such
Derivative Works in Source or Object form.
3. Grant of Patent License.
Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable (except as stated in this section) patent license to make, have
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
such license applies only to those patent claims licensable by such Contributor
that are necessarily infringed by their Contribution(s) alone or by combination
of their Contribution(s) with the Work to which such Contribution(s) was
submitted. If You institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
Contribution incorporated within the Work constitutes direct or contributory
patent infringement, then any patent licenses granted to You under this License
for that Work shall terminate as of the date such litigation is filed.
4. Redistribution.
You may reproduce and distribute copies of the Work or Derivative Works thereof
in any medium, with or without modifications, and in Source or Object form,
provided that You meet the following conditions:
You must give any other recipients of the Work or Derivative Works a copy of
this License; and
You must cause any modified files to carry prominent notices stating that You
changed the files; and
You must retain, in the Source form of any Derivative Works that You distribute,
all copyright, patent, trademark, and attribution notices from the Source form
of the Work, excluding those notices that do not pertain to any part of the
Derivative Works; and
If the Work includes a "NOTICE" text file as part of its distribution, then any
Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those notices
that do not pertain to any part of the Derivative Works, in at least one of the
following places: within a NOTICE text file distributed as part of the
Derivative Works; within the Source form or documentation, if provided along
with the Derivative Works; or, within a display generated by the Derivative
Works, if and wherever such third-party notices normally appear. The contents of
the NOTICE file are for informational purposes only and do not modify the
License. You may add Your own attribution notices within Derivative Works that
You distribute, alongside or as an addendum to the NOTICE text from the Work,
provided that such additional attribution notices cannot be construed as
modifying the License.
You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction, or
distribution of Your modifications, or for any such Derivative Works as a whole,
provided Your use, reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License.
5. Submission of Contributions.
Unless You explicitly state otherwise, any Contribution intentionally submitted
for inclusion in the Work by You to the Licensor shall be under the terms and
conditions of this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify the terms of
any separate license agreement you may have executed with Licensor regarding
such Contributions.
6. Trademarks.
This License does not grant permission to use the trade names, trademarks,
service marks, or product names of the Licensor, except as required for
reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty.
Unless required by applicable law or agreed to in writing, Licensor provides the
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
including, without limitation, any warranties or conditions of TITLE,
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
solely responsible for determining the appropriateness of using or
redistributing the Work and assume any risks associated with Your exercise of
permissions under this License.
8. Limitation of Liability.
In no event and under no legal theory, whether in tort (including negligence),
contract, or otherwise, unless required by applicable law (such as deliberate
and grossly negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special, incidental,
or consequential damages of any character arising as a result of this License or
out of the use or inability to use the Work (including but not limited to
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
any and all other commercial damages or losses), even if such Contributor has
been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability.
While redistributing the Work or Derivative Works thereof, You may choose to
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
other liability obligations and/or rights consistent with this License. However,
in accepting such obligations, You may act only on Your own behalf and on Your
sole responsibility, not on behalf of any other Contributor, and only if You
agree to indemnify, defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason of your
accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "{}" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also
recommend that a file or class name and description of purpose be included on
the same "printed page" as the copyright notice for easier identification within
third-party archives.
Copyright 2017 Karson
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: Makefile
================================================
prepare:
npm install
build:
rm -rfv ./dist/; \
rm -rfv ./dist-min/; \
grunt default --force; \
node ./scripts/postBuild.js; \
uglifyjs -o dist-min/ueditor.all.js dist/ueditor.all.js; \
npx babel dist/dialogs/ai/ai.js -o dist/dialogs/ai/ai.js; \
uglifyjs -o dist-min/dialogs/ai/ai.js dist/dialogs/ai/ai.js;
================================================
FILE: README.md
================================================
# UEditor Plus
基于 UEditor 二次开发的富文本编辑器,让UEditor重新焕发活力

[](https://github.com/modstart-lib/ueditor-plus)
[](https://gitee.com/modstart-lib/ueditor-plus)
[](https://gitcode.com/modstart-lib/ueditor-plus)
> `/dist/` 和 `/dist-min/` 目录分别为构建的非压缩和压缩版代码,可直接使用
## 功能亮点
- 支持文档一键导入,支持Word文档(docx)、Markdown文档(md)文档
- 全新的UI外观,使用字体图标替换原有图片图标
- 移除过时、无用的插件支持,不断完善使用体验
- 图片、文件、视频上传配置化定制增强
- 演示界面重构,右上角可直接查看当前演示界面代码
- 兼容现有UEditor,实现无缝切换
## 相关链接
- 在线演示:[https://open.modstart.com/ueditor-plus/_examples/](https://open.modstart.com/ueditor-plus/_examples/)
- 使用文档: [https://open.modstart.com/ueditor-plus](https://open.modstart.com/ueditor-plus)
## 使用遇到问题
自开源以来,UEditor Plus 已经被大家广泛关注,也收到了很多反馈。
为提高问题解决的效率,在提交问题时,请大家自行搭建一个最小可复现的环境代码(`zip` 压缩包 或 `git` 仓库地址),不提供的问题或者 `issue` 将不予解决和解答。
## 使用教程
### 原生使用
```html
```
### vue2 使用
① 安装插件支持
```shell
npm i --save vue-ueditor-wrap@2.x
# 或
yarn add --save vue-ueditor-wrap@2.x
```
② 解压 UEditorPlus 到静态资源目录
复制 `dist-min` 到项目 `public/static/UEditorPlus/` 目录
③ 引入组件并使用
```html
| 微信交流群 | QQ交流群 |
|---|---|
|
|
|