excelize icon indicating copy to clipboard operation
excelize copied to clipboard

[BUG]

Open xiazhihou opened this issue 5 months ago • 1 comments

🐛 Bug Report

我有一个表格,它有内联超链接。

await workbook.xlsx.readFile(sourceFile);
  console.log('workbook:', workbook);

在workbook,以及cell.value 中都未找到有这个超链接。仅外部链接是正常被解析到。

Lib version: 4.4.9

Steps To Reproduce

const wb = new ExcelJS.Workbook();
const ws = wb.addWorksheet('XYZ');

ws.getCell('A1').value = 7;
expect(ws.getCell('A1').value).to.equal(7);

The expected behaviour:

Possible solution (optional, but very helpful):


xiazhihou avatar Jul 04 '25 01:07 xiazhihou