diff options
| author | Shulhan <ms@kilabit.info> | 2026-02-09 13:00:04 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-02-09 13:00:04 +0700 |
| commit | 4956de038af8b52db6d03f0b6f5b77e6b7cfa721 (patch) | |
| tree | 60bd4268068fd4c59af097d976c1df09d01c66a5 /asciidoctor.go | |
| parent | 0fc91c39caefa0e00832cce55ae5a0073e67f6a8 (diff) | |
| download | asciidoctor-go-0.7.3.tar.xz | |
Release asciidoctor-go v0.7.3 (2026-02-09)v0.7.3
**🌼 all: add aria-label to the anchor when sectanchor enabled**
The aria-label help user with screen reader to discern and navigate
the anchor.
For more information see
https://dequeuniversity.com/rules/axe/4.11/link-name .
**🌼 all: update default CSS to asciidoctor v2.0.26**
The default CSS now split into separate file to simplify tracking and
modifying the style as needed.
Diffstat (limited to 'asciidoctor.go')
| -rw-r--r-- | asciidoctor.go | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/asciidoctor.go b/asciidoctor.go index 5d67769..3c89afa 100644 --- a/asciidoctor.go +++ b/asciidoctor.go @@ -1,5 +1,5 @@ -// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info> // SPDX-License-Identifier: GPL-3.0-or-later +// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info> // Package asciidoctor is the Go module to parse the [AsciiDoc markup]. // Its currently support converting the asciidoc to HTML5. @@ -13,12 +13,10 @@ import ( "git.sr.ht/~shulhan/pakakeh.go/lib/math/big" ) -const ( - // Version of this module. - Version = `0.7.2` +// Version of this module. +const Version = `0.7.3` - _lf = "\n" -) +const _lf = "\n" //go:embed default.css var DefaultCSS string |
