Skip to content

Commit a896c80

Browse files
committed
update readme
1 parent c831874 commit a896c80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README_zh.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ npm install @zurmokeeper/exceljs
1818

1919
变更日志:
2020

21-
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (brank change) 和支持新的内部链接方式。
21+
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (Break change) 和支持新的内部链接方式。
2222
* 2:Add type definition for WorksheetModel.merges, Thank you <a href="https://github.com/ytjmt">ytjmt</a>, Merged <a href="https://github.com/exceljs/exceljs/pull/2281"> PR2281</a>.
2323
* 3:Add type definition for WorksheetProtection.spinCount,Thank you <a href="https://github.com/damingerdai">damingerdai</a>, Merged <a href="https://github.com/exceljs/exceljs/pull/2284"> PR2284</a>.
2424

@@ -31,13 +31,13 @@ const ws1 = wb.addWorksheet('Sheet1');
3131
const ws2 = wb.addWorksheet('Sheet2');
3232
3333
'#'是必须的,@zurmokeeper/exceljs 是通过'#'来区分内部链接的,默认会被认为是非内部链接,旧版本使用也要手动加上 '#' ,如何没加的话
34-
// internal link
34+
// internal hyperlink
3535
ws1.getCell('A1').value = { text: 'Sheet2', hyperlink: '#Sheet2!A1' };
3636
37-
// internal link
37+
// internal hyperlink
3838
ws1.getCell('A1').value = { text: 'Sheet2', hyperlink: '#Sheet2!A1:B1' };
3939
40-
// internal link
40+
// internal hyperlink
4141
ws1.getCell('A1').value = { text: 'Sheet2', hyperlink: '#A1:B1' };
4242
```
4343

0 commit comments

Comments
 (0)