• An editor that simulates a handwritten environment, like an exam for an essay.

  • Constraints present in handwriting:

    • There is a limit to the number of words per second.
      • Implementing this in Japanese might be challenging due to conversion-related issues.
        • However, it seems that the onChange function is only called when the conversion is confirmed, so it should be fine.
    • Copying or moving characters is not possible.
      • This can be achieved by locking the feature.
    • Deleting a character does not cause the characters after it to move.
      • Inserting a space should solve this issue.
    • Kanji cannot be entered without memorizing their shape.
      • Well… that’s a challenge.
  • Implementing this seems to help understand the difficulty of implementing Web Editor Implementation.