Merge pull request #468 from lynettelopez/fix/move-cursor-to-end-of-markdown

Fix: Move cursor to end of markdown
This commit is contained in:
DarkSky
2022-09-29 23:10:05 +08:00
committed by GitHub
@@ -551,9 +551,9 @@ export const Text = forwardRef<ExtendedTextUtils, TextProps>((props, ref) => {
}
}
// markdown interception
if (supportMarkdown && !!handleMarkdown(e)) {
const start_selection = utils.current.getStartSelection();
utils.current.setSelection(start_selection);
if (supportMarkdown && handleMarkdown(e)) {
const endOfMarkdown = utils.current.getEndSelection();
utils.current.setSelection(endOfMarkdown);
e.preventDefault();
return true;
}