Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some characters will cause rendering to fail #3249

Open
scarqin opened this issue Jun 3, 2024 · 0 comments
Open

Some characters will cause rendering to fail #3249

scarqin opened this issue Jun 3, 2024 · 0 comments

Comments

@scarqin
Copy link

scarqin commented Jun 3, 2024

Hi! 馃憢

Firstly, thanks for your work on this project! 馃檪

Today I used patch-package to patch @toast-ui/[email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/@toast-ui/editor/dist/esm/index.js b/node_modules/@toast-ui/editor/dist/esm/index.js
index d966ba8..02e8bd2 100644
--- a/node_modules/@toast-ui/editor/dist/esm/index.js
+++ b/node_modules/@toast-ui/editor/dist/esm/index.js
@@ -20056,7 +20056,7 @@ var CommandManager = /** @class */ (function () {
     return CommandManager;
 }());
 
-function getTextWithoutTrailingNewline(text) {
+function getTextWithoutTrailingNewline(text='') {
     return text[text.length - 1] === '\n' ? text.slice(0, text.length - 1) : text;
 }
 function isCustomHTMLInlineNode(_a, node) {

This issue body was partially generated by patch-package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant