gitextract_k4v0_48_/ ├── .babelrc ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_template.md │ │ ├── feature_template.md │ │ └── question_template.md │ └── workflows/ │ └── gha.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── LOG.md ├── README-EN.md ├── README.md ├── SECURITY.md ├── _config.yml ├── doc/ │ ├── cn/ │ │ ├── images.md │ │ ├── markdown.md │ │ ├── no-cnd.md │ │ ├── upload-images.md │ │ └── use.md │ └── en/ │ ├── images.md │ ├── markdown.md │ ├── no-cnd.md │ ├── upload-images.md │ └── use.md ├── jest.config.js ├── mavon-editor.d.ts ├── package.json ├── src/ │ ├── components/ │ │ ├── md-toolbar-left.vue │ │ └── md-toolbar-right.vue │ ├── dev/ │ │ ├── app.vue │ │ ├── assets/ │ │ │ ├── config.js │ │ │ └── lang/ │ │ │ ├── de/ │ │ │ │ ├── help_de.md │ │ │ │ └── words_de.json │ │ │ ├── en/ │ │ │ │ ├── help_en.md │ │ │ │ └── words_en.json │ │ │ ├── fr/ │ │ │ │ ├── help_fr.md │ │ │ │ └── words_fr.json │ │ │ ├── pt-BR/ │ │ │ │ ├── help_pt-BR.md │ │ │ │ └── words_pt-BR.json │ │ │ ├── ru/ │ │ │ │ ├── help_ru.md │ │ │ │ └── words_ru.json │ │ │ ├── zh-CN/ │ │ │ │ ├── help_zh-CN.md │ │ │ │ └── words_zh-CN.json │ │ │ └── zh-TW/ │ │ │ ├── help_zh-TW.md │ │ │ └── words_zh-TW.json │ │ ├── demo.vue │ │ ├── editor.vue │ │ ├── index.html │ │ └── index.js │ ├── index.js │ ├── lib/ │ │ ├── config.js │ │ ├── core/ │ │ │ ├── extra-function.js │ │ │ ├── highlight.js │ │ │ ├── hljs/ │ │ │ │ ├── lang.hljs.css.js │ │ │ │ └── lang.hljs.js │ │ │ ├── keydown-listen.js │ │ │ ├── markdown.js │ │ │ ├── onecolumn-event.js │ │ │ ├── sanitizer.js │ │ │ └── to-markdown.js │ │ ├── css/ │ │ │ ├── markdown.css │ │ │ ├── mavon-editor.styl │ │ │ ├── md.css │ │ │ └── scroll.styl │ │ ├── font/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── config.json │ │ │ ├── css/ │ │ │ │ ├── animation.css │ │ │ │ ├── fontello-codes.css │ │ │ │ ├── fontello-embedded.css │ │ │ │ ├── fontello-ie7-codes.css │ │ │ │ ├── fontello-ie7.css │ │ │ │ └── fontello.css │ │ │ └── demo.html │ │ ├── lang/ │ │ │ ├── de/ │ │ │ │ ├── help_de.md │ │ │ │ └── words_de.json │ │ │ ├── en/ │ │ │ │ ├── help_en.md │ │ │ │ └── words_en.json │ │ │ ├── fr/ │ │ │ │ ├── help_fr.md │ │ │ │ └── words_fr.json │ │ │ ├── ja/ │ │ │ │ ├── help_ja.md │ │ │ │ └── words_ja.json │ │ │ ├── kr/ │ │ │ │ ├── help_kr.md │ │ │ │ └── words_kr.json │ │ │ ├── pt-BR/ │ │ │ │ ├── help_pt-BR.md │ │ │ │ └── words_pt-BR.json │ │ │ ├── ru/ │ │ │ │ ├── help_ru.md │ │ │ │ └── words_ru.json │ │ │ ├── zh-CN/ │ │ │ │ ├── help_zh-CN.md │ │ │ │ └── words_zh-CN.json │ │ │ └── zh-TW/ │ │ │ ├── help_zh-TW.md │ │ │ └── words_zh-TW.json │ │ ├── mixins/ │ │ │ └── markdown.js │ │ ├── toolbar_left_click.js │ │ ├── toolbar_right_click.js │ │ └── util.js │ └── mavon-editor.vue ├── tests/ │ └── unit/ │ ├── __snapshots__/ │ │ └── mavon-editor.spec.js.snap │ ├── base.spec.js │ └── mavon-editor.spec.js └── webpack/ ├── webpack.base.js ├── webpack.build.js └── webpack.dev.js