mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 07:42:09 +01:00
The `strings.Title` function is deprecated because it does not handle Unicode punctuation correctly. This change replaces its usage in the DOCX, HTML, and Markdown exporters with the recommended `golang.org/x/text/cases` package. This ensures more robust and accurate title-casing for item headings.
14 lines
255 B
Modula-2
14 lines
255 B
Modula-2
module github.com/kjanat/articulate-parser
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/fumiama/go-docx v0.0.0-20250506085032-0c30fd09304b
|
|
golang.org/x/text v0.30.0
|
|
)
|
|
|
|
require (
|
|
github.com/fumiama/imgsz v0.0.4 // indirect
|
|
golang.org/x/image v0.32.0 // indirect
|
|
)
|