diff options
| author | Shulhan <ms@kilabit.info> | 2024-09-07 17:50:18 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-09-07 17:50:18 +0700 |
| commit | cfa3ae54e40a1d8ddf24fb98762596180aab3bfd (patch) | |
| tree | 517e0944752650cad38b318d0d17f6b9a0ae7aa5 | |
| parent | 729e8421c94b244299d5e0feae4e00b6684904da (diff) | |
| download | ciigo-0.13.2.tar.xz | |
Release ciigo v0.13.2 (2024-09-07)v0.13.2
Update on asciidoctor-go bring new features and enhancements,
* Support document attribute "leveloffset".
The ":leveloffset:" on document attribute allow increment or decrement
the heading level on included files.
Reference: https://docs.asciidoctor.org/asciidoc/latest/directives/include-with-leveloffset/
* Use strict document header format.
Previously, an empty line before Document Title cause the parser
stop parsing the document header, now an empty lines are skipped.
Also document attribute can be place anywhere, either before or after
title, and in between attributes; now it can be only placed after
revision or author or title.
| -rw-r--r-- | CHANGELOG.adoc | 25 | ||||
| -rw-r--r-- | ciigo.go | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 934ddf8..a088dbf 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -6,6 +6,31 @@ Shulhan <ms@kilabit.info> :sectanchors: :sectlinks: + +[#v0_13_2] +== ciigo v0.13.2 (2024-09-07) + +Update on asciidoctor-go bring new features and enhancements, + +* Support document attribute "leveloffset". ++ +-- +The ":leveloffset:" on document attribute allow increment or decrement +the heading level on included files. + +Reference: https://docs.asciidoctor.org/asciidoc/latest/directives/include-with-leveloffset/ +-- + +* Use strict document header format. ++ +Previously, an empty line before Document Title cause the parser +stop parsing the document header, now an empty lines are skipped. +Also document attribute can be place anywhere, either before or after +title, and in between attributes; now it can be only placed after +revision or author or title. + + + [#v0_13_1] == ciigo v0.13.1 (2024-08-04) @@ -27,7 +27,7 @@ const ( ) // Version define the latest tagged release of this module. -var Version = `0.13.1` +var Version = `0.13.2` // defExcludes define default files to be excludes on GoEmbed. var defExcludes = []string{ |
