You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are reporting a new issue, make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead.
8
+
9
+
- type: textarea
10
+
id: description
11
+
attributes:
12
+
label: Description
13
+
description: Briefly describe the problem you are having in a few paragraphs.
14
+
validations:
15
+
required: true
16
+
17
+
- type: textarea
18
+
id: reproduction-steps
19
+
attributes:
20
+
label: Steps to reproduce the issue
21
+
description: Explain how to cause the issue in the provided reproduction.
22
+
placeholder: |
23
+
1.
24
+
2.
25
+
3.
26
+
validations:
27
+
required: true
28
+
29
+
- type: textarea
30
+
id: received
31
+
attributes:
32
+
label: Describe the results you received
33
+
validations:
34
+
required: true
35
+
36
+
- type: textarea
37
+
id: expected
38
+
attributes:
39
+
label: Describe the results you expected
40
+
validations:
41
+
required: true
42
+
43
+
- type: input
44
+
id: go-version
45
+
attributes:
46
+
label: Go version
47
+
description: |
48
+
Output of `go version`:
49
+
placeholder: e.g. 1.23.4
50
+
validations:
51
+
required: true
52
+
53
+
- type: input
54
+
id: excelize-version
55
+
attributes:
56
+
label: Excelize version or commit ID
57
+
description: |
58
+
Which version of Excelize are you using?
59
+
placeholder: e.g. 2.9.0
60
+
validations:
61
+
required: true
62
+
63
+
- type: textarea
64
+
id: env
65
+
attributes:
66
+
label: Environment
67
+
description: Environment details (OS, Microsoft Excel™ version, physical, etc.)
68
+
render: shell
69
+
validations:
70
+
required: true
71
+
72
+
- type: checkboxes
73
+
id: checkboxes
74
+
attributes:
75
+
label: Validations
76
+
description: Before submitting the issue, please make sure you do the following
77
+
options:
78
+
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
79
+
required: true
80
+
- label: The provided reproduction is a minimal reproducible example of the bug.
If you are reporting a new issue, make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead.
8
+
9
+
- type: textarea
10
+
id: description
11
+
attributes:
12
+
label: Description
13
+
description: Describe the feature that you would like added
14
+
validations:
15
+
required: true
16
+
17
+
- type: textarea
18
+
id: additional-context
19
+
attributes:
20
+
label: Additional context
21
+
description: Any other context or screenshots about the feature request here?
22
+
23
+
- type: checkboxes
24
+
id: checkboxes
25
+
attributes:
26
+
label: Validations
27
+
description: Before submitting the issue, please make sure you do the following
28
+
options:
29
+
- label: Check that there isn't already an issue that requests the same feature to avoid creating a duplicate.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
14
14
## Introduction
15
15
16
-
Excelize is a library written in pure Go providing a set of functions that allow you to write to and read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports reading and writing spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports complex components by high compatibility, and provided streaming API for generating or reading data from a worksheet with huge amounts of data. This library needs Go version 1.20 or later. There are some [incompatible changes](https://github.com/golang/go/issues/61881) in the Go 1.21.0, the Excelize library can not working with that version normally, if you are using the Go 1.21.x, please upgrade to the Go 1.21.1 and later version. The full docs can be seen using go's built-in documentation tool, or online at [go.dev](https://pkg.go.dev/github.com/xuri/excelize/v2) and [docs reference](https://xuri.me/excelize/).
16
+
Excelize is a library written in pure Go providing a set of functions that allow you to write to and read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports reading and writing spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports complex components by high compatibility, and provided streaming API for generating or reading data from a worksheet with huge amounts of data. This library needs Go version 1.23.0 or later. The full docs can be seen using go's built-in documentation tool, or online at [go.dev](https://pkg.go.dev/github.com/xuri/excelize/v2) and [docs reference](https://xuri.me/excelize/).
0 commit comments