[PR #1519] [MERGED] Separate AppFlowy Editor Plugins #4792

Closed
opened 2026-03-23 22:15:51 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1519
Author: @LucasXu0
Created: 12/1/2022
Status: Merged
Merged: 12/2/2022
Merged by: @LucasXu0

Base: mainHead: plugin


📝 Commits (7)

  • 7ba6382 feat: init appflowy editor plugins
  • 157f929 feat: move divider plugin to appflowy editor plugins directory
  • 2b27fe8 feat: move math equation plugin to appflowy editor plugins directory
  • 89becbf feat: add hint text for math equation plugin
  • e476337 feat: move code block plugin to appflowy editor plugins directory
  • 4fa2d6d feat: overwrite paste logic in code block
  • c6c164d feat: integrate divider, code block, and math equation into appflowy

📊 Changes

21 files changed (+798 additions, -473 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/document/document_page.dart (+21 -3)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart (+26 -0)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/horizontal_rule_node_widget.dart (+0 -166)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/tex_block_node_widget.dart (+0 -193)
📝 frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml (+2 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/.gitignore (+30 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/.metadata (+10 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/CHANGELOG.md (+3 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/LICENSE (+1 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/README.md (+39 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/analysis_options.yaml (+4 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart (+12 -0)
📝 frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/code_block/code_block_node_widget.dart (+65 -110)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/code_block/code_block_shortcut_event.dart (+124 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/divider/divider_node_widget.dart (+84 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/divider/divider_shortcut_event.dart (+72 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/math_ equation/math_equation_node_widget.dart (+220 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/pubspec.yaml (+60 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/test/appflowy_editor_plugins_test.dart (+1 -0)
📝 frontend/app_flowy/pubspec.lock (+22 -1)

...and 1 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/1519 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 12/1/2022 **Status:** ✅ Merged **Merged:** 12/2/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `plugin` --- ### 📝 Commits (7) - [`7ba6382`](https://github.com/AppFlowy-IO/AppFlowy/commit/7ba638268bbf081c140daa1552ebc51bf5e2e463) feat: init appflowy editor plugins - [`157f929`](https://github.com/AppFlowy-IO/AppFlowy/commit/157f929ff90edd0e0d619a77a6dd7949b6346925) feat: move divider plugin to appflowy editor plugins directory - [`2b27fe8`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b27fe85aa4cc7ff5e9068cc6cee900919df7c9a) feat: move math equation plugin to appflowy editor plugins directory - [`89becbf`](https://github.com/AppFlowy-IO/AppFlowy/commit/89becbfe71f00c55b72313d405ad7e9de0070b24) feat: add hint text for math equation plugin - [`e476337`](https://github.com/AppFlowy-IO/AppFlowy/commit/e476337a6a524e402359cca16e6242ee4ae5f08f) feat: move code block plugin to appflowy editor plugins directory - [`4fa2d6d`](https://github.com/AppFlowy-IO/AppFlowy/commit/4fa2d6dc2ecbab590dcafe383310754cc8bffa58) feat: overwrite paste logic in code block - [`c6c164d`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6c164d34710e9a5efe27a7cf68587049fa12b91) feat: integrate divider, code block, and math equation into appflowy ### 📊 Changes **21 files changed** (+798 additions, -473 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/document/document_page.dart` (+21 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart` (+26 -0) ➖ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/horizontal_rule_node_widget.dart` (+0 -166) ➖ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/tex_block_node_widget.dart` (+0 -193) 📝 `frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml` (+2 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/.gitignore` (+30 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/.metadata` (+10 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/CHANGELOG.md` (+3 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/LICENSE` (+1 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/README.md` (+39 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/analysis_options.yaml` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart` (+12 -0) 📝 `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/code_block/code_block_node_widget.dart` (+65 -110) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/code_block/code_block_shortcut_event.dart` (+124 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/divider/divider_node_widget.dart` (+84 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/divider/divider_shortcut_event.dart` (+72 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/math_ equation/math_equation_node_widget.dart` (+220 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/pubspec.yaml` (+60 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/test/appflowy_editor_plugins_test.dart` (+1 -0) 📝 `frontend/app_flowy/pubspec.lock` (+22 -1) _...and 1 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:15:51 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4792
No description provided.