diff options
| -rw-r--r-- | CHANGELOG | 15 | ||||
| -rw-r--r-- | asciidoctor.go | 2 |
2 files changed, 15 insertions, 2 deletions
@@ -4,7 +4,20 @@ Shulhan <ms@kilabit.info> :toc: :sectlinks: -:four-strips: ---- + +[#v0_7_1] +== asciidoctor-go v0.7.1 (2025-04-18) + +[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". + [#v0_7_0] == asciidoctor-go v0.7.0 (2025-04-18) 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" ) |
