JiHong88 / suneditor

Pure javascript based WYSIWYG html editor, with no dependencies.
http://suneditor.com
MIT License
1.67k stars 308 forks source link

Tab key outputs "Â Â Â Â " #1369

Open trymeouteh opened 4 months ago

trymeouteh commented 4 months ago

Is your feature request related to a problem? Please describe. When I press the tab key inside the edit, I get the following output "Â Â Â Â " instead of a tab space

Describe the solution you'd like To output a tab space and not these characters.

Describe alternatives you've considered None

Additional context

Running Linux Mint 21 Tested in Firefox and Chromium

My code

<link rel="stylesheet" href="node_modules/suneditor/dist/css/suneditor.min.css">

<textarea id="myEditor"></textarea>

<script src="node_modules/suneditor/dist/suneditor.min.js"></script>

<script>
    SUNEDITOR.create('myEditor');
</script>