mirror of
https://github.com/go-gitea/gitea.git
synced 2026-01-24 08:19:37 +01: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.