[PR #1090] [MERGED] fix: convert markdown symbol to styled text fails #4527

Closed
opened 2026-03-23 21:38:12 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1090
Author: @LucasXu0
Created: 9/19/2022
Status: Merged
Merged: 9/19/2022
Merged by: @LucasXu0

Base: mainHead: feature/theme


📝 Commits (6)

  • 31358ee fix: convert markdown symbol to styled text fails
  • 38e8e31 docs: update customzing.md
  • a869d0a chore: disable macOS titlebar
  • eb273c8 chore: specify the built-in language as en_US
  • e7345e9 docs: update documentation
  • cbc010a docs: update documentation

📊 Changes

17 files changed (+139 additions, -86 deletions)

View changed files

📝 frontend/app_flowy/packages/appflowy_editor/README.md (+2 -6)
📝 frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md (+22 -15)
frontend/app_flowy/packages/appflowy_editor/documentation/images/appflowy-editor-example.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/appflowy_editor_example.mp4 (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_component.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_shortcut_event_after.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_shortcut_event_before.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_component.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_shortcut_event_after.gif (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_shortcut_event_before.gif (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+4 -3)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/underscore_to_italic.dart (+53 -0)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/underscore_to_italic_key_event_handler.dart (+0 -45)
📝 frontend/app_flowy/packages/appflowy_editor/example/macos/Runner/Base.lproj/MainMenu.xib (+7 -6)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/whitespace_handler.dart (+10 -11)
📝 frontend/app_flowy/packages/appflowy_editor/test/service/internal_key_event_handlers/white_space_handler_test.dart (+40 -0)

📄 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/1090 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 9/19/2022 **Status:** ✅ Merged **Merged:** 9/19/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feature/theme` --- ### 📝 Commits (6) - [`31358ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/31358eee4f23f5ee34a910d96bf698712a514763) fix: convert markdown symbol to styled text fails - [`38e8e31`](https://github.com/AppFlowy-IO/AppFlowy/commit/38e8e310d21f65df236f707856e5a4ba0e52df00) docs: update customzing.md - [`a869d0a`](https://github.com/AppFlowy-IO/AppFlowy/commit/a869d0aa969139870f3a7ab17f07440590eceb9c) chore: disable macOS titlebar - [`eb273c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/eb273c8a8cf597223320e08d5aa81ac15d5040ae) chore: specify the built-in language as en_US - [`e7345e9`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7345e9127fd36d9a29b1b1999fb27e78dd858de) docs: update documentation - [`cbc010a`](https://github.com/AppFlowy-IO/AppFlowy/commit/cbc010a0d451986ec96052a45cc2fa31ba2c5bec) docs: update documentation ### 📊 Changes **17 files changed** (+139 additions, -86 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/packages/appflowy_editor/README.md` (+2 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md` (+22 -15) ➖ `frontend/app_flowy/packages/appflowy_editor/documentation/images/appflowy-editor-example.gif` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/appflowy_editor_example.mp4` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_component.gif` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_shortcut_event_after.gif` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customize_a_shortcut_event_before.gif` (+0 -0) ➖ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_component.gif` (+0 -0) ➖ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_shortcut_event_after.gif` (+0 -0) ➖ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_shortcut_event_before.gif` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+4 -3) ➕ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/underscore_to_italic.dart` (+53 -0) ➖ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/underscore_to_italic_key_event_handler.dart` (+0 -45) 📝 `frontend/app_flowy/packages/appflowy_editor/example/macos/Runner/Base.lproj/MainMenu.xib` (+7 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/whitespace_handler.dart` (+10 -11) 📝 `frontend/app_flowy/packages/appflowy_editor/test/service/internal_key_event_handlers/white_space_handler_test.dart` (+40 -0) </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 21:38:12 +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#4527
No description provided.