Hi Geoff,
Great package, and many thanks for this. I'm fairly new to Go, but I wrote a small xml to xlsx package using your library, which is really useful.
I was wondering if you:
1) happen to know why Excel 2013 is prone to give this warning: "We found a problem with some content in [generated file name.xlsx. Do you want us to try to recover as much as we can ?"
But nothing appears to be broken - the generated data had made its way into the file. So that's strange.
2) could give an example how to apply bold style to fonts.
The following snippet I attempted is not doing the trick (I tried Arial Black just because but the question would be more generic how to apply the "font-weight" as bold to any kind of font)
log.Printf("Setting Arial Black for this cell as I have no idea how to set font-weight")
cell = row.AddCell()
font := xlsx.NewFont(11, "Arial Black")
style := xlsx.NewStyle()
style.Font = *font
cell.SetStyle(style)
cell.Value = "abc"
Many thanks and regards,
Silviu