├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── index.css ├── index.js ├── index.js.map └── output.css ├── index.d.ts ├── jsconfig.json ├── package.json ├── playground ├── argv.js ├── devMiddlewares.js ├── index.html ├── index.jsx ├── logger.js ├── port.js ├── server.js └── webpack │ ├── scss-output.js │ ├── webpack.base.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── src ├── assets │ ├── icons │ │ ├── icons.json │ │ └── icons.woff │ └── scss │ │ ├── _base.scss │ │ ├── _braft.scss │ │ ├── _config.scss │ │ ├── _icons.scss │ │ ├── _inc.scss │ │ └── output.scss ├── components │ ├── business │ │ ├── ControlBar │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── ControlGroup │ │ │ └── index.jsx │ │ ├── EmojiPicker │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── FontFamily │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── FontSize │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── Headings │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── LetterSpacing │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── LineHeight │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── LinkEditor │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── PlayerModal │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── TextAlign │ │ │ └── index.jsx │ │ ├── TextColor │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ └── TextIndent │ │ │ └── index.jsx │ └── common │ │ ├── ColorPicker │ │ ├── index.jsx │ │ └── style.scss │ │ ├── DropDown │ │ ├── index.jsx │ │ └── style.scss │ │ ├── Modal │ │ ├── index.jsx │ │ └── style.scss │ │ └── Switch │ │ ├── index.jsx │ │ └── style.scss ├── configs │ ├── controls.js │ ├── handlers.js │ ├── keybindings.js │ ├── maps.js │ └── props.js ├── editor │ └── index.jsx ├── helpers │ ├── extension.js │ └── responsive.js ├── index.jsx ├── languages │ ├── en.js │ ├── fa.js │ ├── fr.js │ ├── index.js │ ├── is.js │ ├── jpn.js │ ├── kr.js │ ├── nl.js │ ├── pl.js │ ├── pt-br.js │ ├── ru.js │ ├── tr.js │ ├── vi-vn.js │ ├── zh-hant.js │ └── zh.js └── renderers │ ├── atomics │ ├── Audio │ │ ├── index.jsx │ │ └── style.scss │ ├── Embed │ │ ├── index.jsx │ │ └── style.scss │ ├── HorizontalLine │ │ ├── index.jsx │ │ └── style.scss │ ├── Image │ │ ├── index.jsx │ │ └── style.scss │ └── Video │ │ ├── index.jsx │ │ └── style.scss │ ├── block │ ├── blockRenderMap.js │ ├── blockRendererFn.js │ └── blockStyleFn.js │ ├── decorators │ ├── Link │ │ └── index.jsx │ └── index.js │ ├── index.js │ └── inline │ ├── inlineStyleFn.js │ └── inlineStyleMap.js ├── tea.yaml └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | example 4 | # playground -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/dist/index.css -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/dist/output.css -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/index.d.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/package.json -------------------------------------------------------------------------------- /playground/argv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/argv.js -------------------------------------------------------------------------------- /playground/devMiddlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/devMiddlewares.js -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/index.jsx -------------------------------------------------------------------------------- /playground/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/logger.js -------------------------------------------------------------------------------- /playground/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/port.js -------------------------------------------------------------------------------- /playground/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/server.js -------------------------------------------------------------------------------- /playground/webpack/scss-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/webpack/scss-output.js -------------------------------------------------------------------------------- /playground/webpack/webpack.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/webpack/webpack.base.js -------------------------------------------------------------------------------- /playground/webpack/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/webpack/webpack.config.dev.js -------------------------------------------------------------------------------- /playground/webpack/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/playground/webpack/webpack.config.prod.js -------------------------------------------------------------------------------- /src/assets/icons/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/icons/icons.json -------------------------------------------------------------------------------- /src/assets/icons/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/icons/icons.woff -------------------------------------------------------------------------------- /src/assets/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/scss/_base.scss -------------------------------------------------------------------------------- /src/assets/scss/_braft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/scss/_braft.scss -------------------------------------------------------------------------------- /src/assets/scss/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/scss/_config.scss -------------------------------------------------------------------------------- /src/assets/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/scss/_icons.scss -------------------------------------------------------------------------------- /src/assets/scss/_inc.scss: -------------------------------------------------------------------------------- 1 | @import 'config'; -------------------------------------------------------------------------------- /src/assets/scss/output.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/assets/scss/output.scss -------------------------------------------------------------------------------- /src/components/business/ControlBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/ControlBar/index.jsx -------------------------------------------------------------------------------- /src/components/business/ControlBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/ControlBar/style.scss -------------------------------------------------------------------------------- /src/components/business/ControlGroup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/ControlGroup/index.jsx -------------------------------------------------------------------------------- /src/components/business/EmojiPicker/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/EmojiPicker/index.jsx -------------------------------------------------------------------------------- /src/components/business/EmojiPicker/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/EmojiPicker/style.scss -------------------------------------------------------------------------------- /src/components/business/FontFamily/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/FontFamily/index.jsx -------------------------------------------------------------------------------- /src/components/business/FontFamily/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/FontFamily/style.scss -------------------------------------------------------------------------------- /src/components/business/FontSize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/FontSize/index.jsx -------------------------------------------------------------------------------- /src/components/business/FontSize/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/FontSize/style.scss -------------------------------------------------------------------------------- /src/components/business/Headings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/Headings/index.jsx -------------------------------------------------------------------------------- /src/components/business/Headings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/Headings/style.scss -------------------------------------------------------------------------------- /src/components/business/LetterSpacing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LetterSpacing/index.jsx -------------------------------------------------------------------------------- /src/components/business/LetterSpacing/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LetterSpacing/style.scss -------------------------------------------------------------------------------- /src/components/business/LineHeight/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LineHeight/index.jsx -------------------------------------------------------------------------------- /src/components/business/LineHeight/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LineHeight/style.scss -------------------------------------------------------------------------------- /src/components/business/LinkEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LinkEditor/index.jsx -------------------------------------------------------------------------------- /src/components/business/LinkEditor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/LinkEditor/style.scss -------------------------------------------------------------------------------- /src/components/business/PlayerModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/PlayerModal/index.jsx -------------------------------------------------------------------------------- /src/components/business/PlayerModal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/PlayerModal/style.scss -------------------------------------------------------------------------------- /src/components/business/TextAlign/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/TextAlign/index.jsx -------------------------------------------------------------------------------- /src/components/business/TextColor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/TextColor/index.jsx -------------------------------------------------------------------------------- /src/components/business/TextColor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/TextColor/style.scss -------------------------------------------------------------------------------- /src/components/business/TextIndent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/business/TextIndent/index.jsx -------------------------------------------------------------------------------- /src/components/common/ColorPicker/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/ColorPicker/index.jsx -------------------------------------------------------------------------------- /src/components/common/ColorPicker/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/ColorPicker/style.scss -------------------------------------------------------------------------------- /src/components/common/DropDown/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/DropDown/index.jsx -------------------------------------------------------------------------------- /src/components/common/DropDown/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/DropDown/style.scss -------------------------------------------------------------------------------- /src/components/common/Modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/Modal/index.jsx -------------------------------------------------------------------------------- /src/components/common/Modal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/Modal/style.scss -------------------------------------------------------------------------------- /src/components/common/Switch/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/Switch/index.jsx -------------------------------------------------------------------------------- /src/components/common/Switch/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/components/common/Switch/style.scss -------------------------------------------------------------------------------- /src/configs/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/configs/controls.js -------------------------------------------------------------------------------- /src/configs/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/configs/handlers.js -------------------------------------------------------------------------------- /src/configs/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/configs/keybindings.js -------------------------------------------------------------------------------- /src/configs/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/configs/maps.js -------------------------------------------------------------------------------- /src/configs/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/configs/props.js -------------------------------------------------------------------------------- /src/editor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/editor/index.jsx -------------------------------------------------------------------------------- /src/helpers/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/helpers/extension.js -------------------------------------------------------------------------------- /src/helpers/responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/helpers/responsive.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/languages/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/en.js -------------------------------------------------------------------------------- /src/languages/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/fa.js -------------------------------------------------------------------------------- /src/languages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/fr.js -------------------------------------------------------------------------------- /src/languages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/index.js -------------------------------------------------------------------------------- /src/languages/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/is.js -------------------------------------------------------------------------------- /src/languages/jpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/jpn.js -------------------------------------------------------------------------------- /src/languages/kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/kr.js -------------------------------------------------------------------------------- /src/languages/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/nl.js -------------------------------------------------------------------------------- /src/languages/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/pl.js -------------------------------------------------------------------------------- /src/languages/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/pt-br.js -------------------------------------------------------------------------------- /src/languages/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/ru.js -------------------------------------------------------------------------------- /src/languages/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/tr.js -------------------------------------------------------------------------------- /src/languages/vi-vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/vi-vn.js -------------------------------------------------------------------------------- /src/languages/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/zh-hant.js -------------------------------------------------------------------------------- /src/languages/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/languages/zh.js -------------------------------------------------------------------------------- /src/renderers/atomics/Audio/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Audio/index.jsx -------------------------------------------------------------------------------- /src/renderers/atomics/Audio/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Audio/style.scss -------------------------------------------------------------------------------- /src/renderers/atomics/Embed/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Embed/index.jsx -------------------------------------------------------------------------------- /src/renderers/atomics/Embed/style.scss: -------------------------------------------------------------------------------- 1 | @import '~scssinc'; -------------------------------------------------------------------------------- /src/renderers/atomics/HorizontalLine/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/HorizontalLine/index.jsx -------------------------------------------------------------------------------- /src/renderers/atomics/HorizontalLine/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/HorizontalLine/style.scss -------------------------------------------------------------------------------- /src/renderers/atomics/Image/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Image/index.jsx -------------------------------------------------------------------------------- /src/renderers/atomics/Image/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Image/style.scss -------------------------------------------------------------------------------- /src/renderers/atomics/Video/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Video/index.jsx -------------------------------------------------------------------------------- /src/renderers/atomics/Video/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/atomics/Video/style.scss -------------------------------------------------------------------------------- /src/renderers/block/blockRenderMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/block/blockRenderMap.js -------------------------------------------------------------------------------- /src/renderers/block/blockRendererFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/block/blockRendererFn.js -------------------------------------------------------------------------------- /src/renderers/block/blockStyleFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/block/blockStyleFn.js -------------------------------------------------------------------------------- /src/renderers/decorators/Link/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/decorators/Link/index.jsx -------------------------------------------------------------------------------- /src/renderers/decorators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/decorators/index.js -------------------------------------------------------------------------------- /src/renderers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/index.js -------------------------------------------------------------------------------- /src/renderers/inline/inlineStyleFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/inline/inlineStyleFn.js -------------------------------------------------------------------------------- /src/renderers/inline/inlineStyleMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/src/renderers/inline/inlineStyleMap.js -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/tea.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margox/braft-editor/HEAD/yarn.lock --------------------------------------------------------------------------------