& inside html string #914
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#914
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I am trying to export / save to XLSX a HTML table, where some values might contain "&" sign
This is always converted into
&
inside XLSX file (due toinnerHTML()
call)I think that the
htmldecode()
function should also replace&
with&
This appears to be fixed in 0.11.13, testing against http://sheetjs.com/demos/table . There are plenty of missing html entities but we'll grind through them in the coming versions.