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
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (brank change) and support new internal linking methods。
23
+
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (Break change) and support new internal hyperlink methods。
24
24
* 2:Add type definition for WorksheetModel.merges, Thank you <ahref="https://github.com/ytjmt">ytjmt</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2281"> PR2281</a>.
25
25
* 3:Add type definition for WorksheetProtection.spinCount,Thank you <ahref="https://github.com/damingerdai">damingerdai</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2284"> PR2284</a>.
26
26
27
-
PS: Since V4.4.2 @zurmokeeper/exceljs new cell insertion internal links support `Sheet2!A1:B1` and `A1:B1` and other forms, the original only supports `Sheet2!A1`, use the following way::
27
+
PS: Since V4.4.2 @zurmokeeper/exceljs new cell insertion internal hyperlink support `Sheet2!A1:B1` and `A1:B1` and other forms, the original only supports `Sheet2!A1`, use the following way::
28
28
29
29
30
30
```
31
31
const wb = new ExcelJS.Workbook();
32
32
const ws1 = wb.addWorksheet('Sheet1');
33
33
const ws2 = wb.addWorksheet('Sheet2');
34
34
35
-
'#' is required, @zurmokeeper/exceljs is to distinguish internal links by '#', the default will be considered non-internal links, older versions also need to manually add '#' , how not to add if
36
-
// internal link
35
+
'#' is required, @zurmokeeper/exceljs is to distinguish internal hyperlink by '#', the default will be considered non-internal hyperlink, older versions also need to manually add '#' , how not to add if
0 commit comments