<feed xmlns='http://www.w3.org/2005/Atom'>
<title>asciidoctor-go, branch v0.7.1</title>
<subtitle>Native Go parser for asciidoc markup.</subtitle>
<id>http://git.kilabit.info/asciidoctor-go/atom?h=v0.7.1</id>
<link rel='self' href='http://git.kilabit.info/asciidoctor-go/atom?h=v0.7.1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/'/>
<updated>2025-04-18T12:41:38Z</updated>
<entry>
<title>Release asciidoctor-go v0.7.1 (2025-04-18)</title>
<updated>2025-04-18T12:41:38Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T12:41:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=dd30c720046cc9d131dc638a56a45c12f9051806'/>
<id>urn:sha1:dd30c720046cc9d131dc638a56a45c12f9051806</id>
<content type='text'>
[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".

</content>
</entry>
<entry>
<title>all: fix the logic when applying default embedded CSS</title>
<updated>2025-04-18T12:35:03Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T12:35:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=7aef4c19dd9b4b9da2460e22395b6a25a476100f'/>
<id>urn:sha1:7aef4c19dd9b4b9da2460e22395b6a25a476100f</id>
<content type='text'>
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".

While at it, export the DocAttrStylesheet.

</content>
</entry>
<entry>
<title>all: disable generating HTML meta for "generator" in tests</title>
<updated>2025-04-18T11:18:31Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T11:18:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=984b3b2c912616de5d8c2de766d4897c255d563e'/>
<id>urn:sha1:984b3b2c912616de5d8c2de766d4897c255d563e</id>
<content type='text'>
The "generator" value will changes on each releases, so better to disable
it to minimize noise during release commit.

</content>
</entry>
<entry>
<title>Release asciidoctor-go v0.7.0 (2025-04-18)</title>
<updated>2025-04-18T09:29:09Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T09:28:15Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=a6d11741c4c050cb0cec96f588baff6366da30d2'/>
<id>urn:sha1:a6d11741c4c050cb0cec96f588baff6366da30d2</id>
<content type='text'>
[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.
</content>
</entry>
<entry>
<title>README: update notes related to Includes directive</title>
<updated>2025-04-18T09:27:11Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T09:27:11Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=552a3d83e549ead4c348f94d2a704ec9e23d0a6c'/>
<id>urn:sha1:552a3d83e549ead4c348f94d2a704ec9e23d0a6c</id>
<content type='text'>
Changes,

* Link the Includes feature to the official documentation
* Update Unsupported Markup related to Includes
* Update list of TODO related to Includes
* Move CHANGELOG to Development section

</content>
</entry>
<entry>
<title>all: update all dependencies</title>
<updated>2025-04-18T08:26:32Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T08:26:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=02bd8e9662cef9cf2c5f1ae0b560e7070c9fc564'/>
<id>urn:sha1:02bd8e9662cef9cf2c5f1ae0b560e7070c9fc564</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: support include directive inside block code</title>
<updated>2025-04-18T08:24:10Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T08:24:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=f25296bef9bb02f3be87e61c54703e26b7814096'/>
<id>urn:sha1:f25296bef9bb02f3be87e61c54703e26b7814096</id>
<content type='text'>
Example of block code with include directive,

----
...
include::file[]
...
----

</content>
</entry>
<entry>
<title>all: remove logging</title>
<updated>2025-04-18T08:11:18Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-04-18T08:11:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=89d1a301ea4d42b73d7af3c982ede59e1f868260'/>
<id>urn:sha1:89d1a301ea4d42b73d7af3c982ede59e1f868260</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: remove the "nolint" tag</title>
<updated>2025-02-18T14:09:43Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-18T14:09:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=b966bc52b9ecc62be830c14882ea93085c08556d'/>
<id>urn:sha1:b966bc52b9ecc62be830c14882ea93085c08556d</id>
<content type='text'>
The nolint tag is to ignore being linted by golangci-lint.
Since we are not using golangci-lint anymore, we can remove it.
</content>
</entry>
<entry>
<title>all: support document attribute "docdir"</title>
<updated>2025-02-16T08:46:20Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-16T08:46:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=34a421761567ad0e711673c6e4ef63d9c1840d5a'/>
<id>urn:sha1:34a421761567ad0e711673c6e4ef63d9c1840d5a</id>
<content type='text'>
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.

</content>
</entry>
</feed>
