Skip to content
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

**Warning:** Features marked as *alpha* may change or be removed in a future release without notice. Use with caution.

## Unreleased

### Fixed

- Fixed a typo in the accessibility metadata (`describeMath` should be `describedMath`).

## [0.13.1] - 2025-12-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pkg/manifest/a11y.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ const (

// Textual descriptions of math equations are included, whether in the alt attribute
// for image-based equations,
A11yFeatureDescribedMath A11yFeature = "describeMath"
A11yFeatureDescribedMath A11yFeature = "describedMath"

// Descriptions are provided for image-based visual content and/or complex structures
// such as tables, mathematics, diagrams, and charts.
Expand Down