agusmakmun/django-markdown-editor
View on GitHubwhen it write korean language, appear help box
Open
#6 opened on Apr 7, 2017
6 comments (6 comments)0 reactions (0 reactions)0 assignees (0 assignees)JavaScript895 stars (895 stars)1,294 forks (1,294 forks)user submission
help wanted
Description
when it write Korean language, appear help box

Contributor guide
- Tech stack
- djangojavascripthtmlcss
- Domain
- frontend
- Issue type
- bug
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 2
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-3 hours
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- clear
- Prerequisites
- Basic JavaScriptBasic DjangoHTML/CSS
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 70
- Research direction
- Investigate the Markdown editor's JavaScript source code (likely in `static/js/martor.js` or similar) for input event handling. Focus on how the editor captures text input and triggers the help box. The issue involves Korean language input, which typically uses IME composition events (compositionstart, compositionend). Check if the code properly handles these events to avoid unwanted help box appearance. Review the issue comments for any additional hints from the maintainer. Reproduce the bug by typing Korean text in the editor and observe the help box behavior. The fix might involve adding event listeners for composition events or modifying the condition that shows the help box.