Skip to content

Commit

Permalink
Merge pull request exceljs#1137 from Alanscut/issue_749
Browse files Browse the repository at this point in the history
fix issue exceljs#749 Fix internal link example errors in readme
  • Loading branch information
Siemienik authored Feb 20, 2020
2 parents d413e12 + d2f5b17 commit 04df955
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2271,7 +2271,7 @@ worksheet.getCell('A1').value = {
};

// internal link
worksheet.getCell('A1').value = { text: 'Sheet2', hyperlink: '#\\"Sheet2\\"!A1' };
worksheet.getCell('A1').value = { text: 'Sheet2', hyperlink: '#\'Sheet2\'!A1' };
```

## Formula Value
Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -1726,7 +1726,7 @@ worksheet.getCell('A1').value = {
};

// internal link
worksheet.getCell('A1').value = { text: 'Sheet2', hyperlink: '#\\"Sheet2\\"!A1' };
worksheet.getCell('A1').value = { text: 'Sheet2', hyperlink: '#\'Sheet2\'!A1' };
```

## <a id="formula-value">公式值</a>
Expand Down

0 comments on commit 04df955

Please sign in to comment.