summaryrefslogtreecommitdiff
path: root/asciidoctor.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-04-18 19:41:38 +0700
committerShulhan <ms@kilabit.info>2025-04-18 19:41:38 +0700
commitdd30c720046cc9d131dc638a56a45c12f9051806 (patch)
tree0df0723173fa782550ec872f8ae6cfb81a5bcac8 /asciidoctor.go
parent7aef4c19dd9b4b9da2460e22395b6a25a476100f (diff)
downloadasciidoctor-go-0.7.1.tar.xz
Release asciidoctor-go v0.7.1 (2025-04-18)v0.7.1
[BUG FIX] **Fix the logic when applying default embedded CSS.** By default, the document contains ":stylesheet:" attribute, which means using the default embedded CSS. To disable it, unset the attribute using ":stylesheet!:". To overwrite it, set the attribute to path of CSS file ":stylesheet: my.css". [ENHANCEMENT] Export the constant for document attribute "stylesheet".
Diffstat (limited to 'asciidoctor.go')
-rw-r--r--asciidoctor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/asciidoctor.go b/asciidoctor.go
index 7aa9eb3..53f5203 100644
--- a/asciidoctor.go
+++ b/asciidoctor.go
@@ -11,7 +11,7 @@ import "git.sr.ht/~shulhan/pakakeh.go/lib/math/big"
const (
// Version of this module.
- Version = `0.7.0`
+ Version = `0.7.1`
_lf = "\n"
)