diff options
author | xuri <xuri.me@gmail.com> | 2021-07-28 00:38:09 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-07-28 00:38:09 +0800 |
commit | e9ae9b45b20a5df7e3aa15afcfac83ecb13394c6 (patch) | |
tree | e744a0eaf7a16e03f4cc8480cc20b3c95126c39d /cell.go | |
parent | f9e9e5d2e07b087e2d4fb2487193aea8c240ab0e (diff) |
change go module import path to github.com/xuri/excelize
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -468,7 +468,7 @@ type HyperlinkOpts struct { // in this workbook. Maximum limit hyperlinks in a worksheet is 65530. The // below is example for external link. // -// err := f.SetCellHyperLink("Sheet1", "A3", "https://github.com/360EntSecGroup-Skylar/excelize", "External") +// err := f.SetCellHyperLink("Sheet1", "A3", "https://github.com/xuri/excelize", "External") // // Set underline and font color style for the cell. // style, err := f.NewStyle(`{"font":{"color":"#1265BE","underline":"single"}}`) // err = f.SetCellStyle("Sheet1", "A3", "A3", style) @@ -594,7 +594,7 @@ func (f *File) GetCellRichText(sheet, cell string) (runs []RichTextRun, err erro // import ( // "fmt" // -// "github.com/360EntSecGroup-Skylar/excelize/v2" +// "github.com/xuri/excelize/v2" // ) // // func main() { |