How to support multiple hyperlinks in one cell? #2937

Closed
opened 2023-05-10 06:28:43 +00:00 by 1977744311 · 1 comment

How can I support multiple hyperlinks in a cell, or what should I do to support it?
I see support now, for example: ws["A1"].l = { Target: "https://sheetjs.com", Tooltip: "Find us @ SheetJS.com!" };

Whether to support: ws["A1"].l = [{ Target: "https://sheetjs.com", Tooltip: "Find us @ SheetJS.com!" }, ...];

How can I support multiple hyperlinks in a cell, or what should I do to support it? I see support now, for example: ws["A1"].l = { Target: "https://sheetjs.com", Tooltip: "Find us @ SheetJS.com!" }; Whether to support: ws["A1"].l = [{ Target: "https://sheetjs.com", Tooltip: "Find us @ SheetJS.com!" }, ...];
Owner

Hyperlinks are currently a cell-level property. This is borne out of spreadsheet software limitations (Excel only supports one link per cell) and file format storage (XLS / XLSB / XLSX have no equivalent of <a href="link1">Link1</a> <a href="link2">Link2</a>)

Some formats like HTML and NUMBERS do support multiple links in a cell. In the future, we may consider changing hyperlinks to align with how Numbers works.

Hyperlinks are currently a cell-level property. This is borne out of spreadsheet software limitations (Excel only supports one link per cell) and file format storage (XLS / XLSB / XLSX have no equivalent of `<a href="link1">Link1</a> <a href="link2">Link2</a>`) Some formats like HTML and NUMBERS do support multiple links in a cell. In the future, we may consider changing hyperlinks to align with how Numbers works.
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sheetjs/sheetjs#2937
No description provided.