codex-team/editor.js

Pasting from MS Word places random new line characters in the paragraph text

Offen

#2.350 geöffnet am 04.05.2023

 (5 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)TypeScript (1.985 Forks)batch import
buggood first issue

Repository-Metriken

Stars
 (26.602 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

Describe a bug.

When pasting from MS Word into the editor, random new line characters (\n) get placed into the resultant JSON [within the paragraph text itself].

Steps to reproduce:

  1. Open the editor
  2. Copy from Word and paste.
  3. Save
{
  "id": "1LRfwKqMBi",
  "type": "paragraph",
  "data": {
      "text": "For three days it rained and everything he carried except\nfor..."
  }
},

These line breaks are not in the Word doc. I looked at the xml inside the .docx. Also, if you type everything into the editor, it doesn't put random line breaks.

Expected behavior:

No extra line breaks.

Why does this matter?

My content management system has an option to strip all line breaks before delivering the html to the browser to cut down on final size.

<html><head>...</head><body>...</body></html>

I can't activate that option because then the paragraphs with random line breaks have words mashed together.

Editor.js version:

v2.26.5

Plugins you use with their versions:

No plugins

Contributor Guide