You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paste from Excel / "Keep" formatting: content copied from MS Excel (and other apps that wrap the clipboard in a bare <html> tag) lost all styling β table cells styled by class in a <style> block (e.g. .xl31 { background:#FCE4D6 }, the typical Excel export) came in with no background, fonts or alignment. applyStyles (the Paste as HTML β Keep path) only inlined <style> rules when the opening tag carried attributes (<html β¦>, as Word emits); Excel emits a bare <html>, so the rules were never inlined and were dropped together with the <style> block. The opening <html> tag is now matched with or without attributes, so class-based styling is inlined onto the cells and survives. Reported in #1362.