mirror of
https://gitea.com/gitea/gitea-mirror.git
synced 2026-04-06 22:21:57 +00:00
### Summary Fix incorrect newline handling in markdown editor when using IME input. ### Details While composing text with an IME, pressing Enter should not trigger markdown indentation logic. This change skips indentation handling during composition by checking `e.isComposing`. This prevents unexpected line breaks and formatting issues for CJK users.