diff options
| author | Shulhan <ms@kilabit.info> | 2025-04-18 20:04:59 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-04-18 20:04:59 +0700 |
| commit | 554fd460dac71943b4a0875d99621e109d844912 (patch) | |
| tree | 01d52ca9784551fd13898ee1820d71ff5e232961 | |
| parent | 627748152584a34070096c02fcd0ecbc1af85422 (diff) | |
| download | ciigo-0.15.2.tar.xz | |
Release ciigo v0.15.2 (2025-04-18)v0.15.2
This release update the core asciidoctor-go module that brings several new
features.
[NEW FEATURE] **Support include directive inside block code.**
Example of block code with include directive,
----
...
include::file[]
...
----
[NEW FEATURE] **Support document attribute "docdir".**
The "docdir" attribute contains the full path of the directory that
contains the source document.
By default it is set to the directory where the Document resided.
[NEW FEATURE] **Add default HTML stylesheet**.
The generated HTML now contains the default stylesheet.
The stylesheet is copied from HTML file generated by Asciidoctor
v2.0.23.
| -rw-r--r-- | CHANGELOG.adoc | 29 | ||||
| -rw-r--r-- | ciigo.go | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index ca9cb60..218a105 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -7,6 +7,35 @@ Shulhan <ms@kilabit.info> :sectlinks: +[#v0_15_2] +== ciigo v0.15.2 (2025-04-18) + +This release update the core asciidoctor-go module that brings several new +features. + +[NEW FEATURE] **Support include directive inside block code.** + +Example of block code with include directive, + +---- +... +include::file[] +... +---- + +[NEW FEATURE] **Support document attribute "docdir".** + +The "docdir" attribute contains the full path of the directory that +contains the source document. +By default it is set to the directory where the Document resided. + +[NEW FEATURE] **Add default HTML stylesheet**. + +The generated HTML now contains the default stylesheet. +The stylesheet is copied from HTML file generated by Asciidoctor +v2.0.23. + + [#v0_15_1] == ciigo v0.15.1 (2025-02-01) @@ -28,7 +28,7 @@ const ( ) // Version define the latest tagged release of this module. -var Version = `0.15.1` +var Version = `0.15.2` // defExcludes define default files to be excludes on GoEmbed. var defExcludes = []string{ |
