Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# xls

[![GoDoc](https://godoc.org/github.com/extrame/xls?status.svg)](https://godoc.org/github.com/extrame/xls)
[![GoDoc](https://godoc.org/github.com/csg800/xls?status.svg)](https://godoc.org/github.com/csg800/xls)

Pure Golang xls library writen by [Rongshu Tech(chinese)](http://www.rongshu.tech).
Add Formula & Format support by [chen.s.g] (http://www.imohe.com)

Thanks for contributions from Tamás Gulácsi, sergeilem.

Expand Down
4 changes: 4 additions & 0 deletions cell_range.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ type HyperLink struct {
IsUrl bool
}

func (h *HyperLink) Debug(wb *WorkBook) {
fmt.Printf("hyper link col dump:%#+v\n", h)
}

//get the hyperlink string, use the public variable Url to get the original Url
func (h *HyperLink) String(wb *WorkBook) []string {
res := make([]string, h.LastColB-h.FristColB+1)
Expand Down
Loading