<feed xmlns='http://www.w3.org/2005/Atom'>
<title>asciidoctor-go, branch v0.3.2</title>
<subtitle>Native Go parser for asciidoc markup.</subtitle>
<id>http://git.kilabit.info/asciidoctor-go/atom?h=v0.3.2</id>
<link rel='self' href='http://git.kilabit.info/asciidoctor-go/atom?h=v0.3.2'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/'/>
<updated>2022-09-05T13:24:19Z</updated>
<entry>
<title>Release asciidoctor-go v0.3.2 (2022-09-05)</title>
<updated>2022-09-05T13:24:19Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-09-05T13:24:19Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=c06ee9cee05df478b00d5605f9432f23ce6d40f9'/>
<id>urn:sha1:c06ee9cee05df478b00d5605f9432f23ce6d40f9</id>
<content type='text'>
===  Bug fix

* all: fix parsing list description inside include directive

===  Chores

* all: update share module to v0.41.0
* all: move all documentation into directory _doc
</content>
</entry>
<entry>
<title>all: update the path on serve-doc task</title>
<updated>2022-09-05T13:21:47Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-09-05T13:21:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=f38aeaf416e75972be1654592c600d6c3b2cd461'/>
<id>urn:sha1:f38aeaf416e75972be1654592c600d6c3b2cd461</id>
<content type='text'>
Since the all documentation files has been moved to _doc,
the serve-doc task should watch and serve directory _doc too.
</content>
</entry>
<entry>
<title>all: fix parsing list description inside include directive</title>
<updated>2022-09-04T17:25:40Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-09-04T17:25:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=7eea9af824bcaee304a11d0048bdeb84fca9e96e'/>
<id>urn:sha1:7eea9af824bcaee304a11d0048bdeb84fca9e96e</id>
<content type='text'>
Previously, given the following include statements in the main document

  include::list_desc.adoc[]

  include::list_desc.adoc[]

Where list_desc.adoc content is,

  Item 00::
  +
  --
  * Bullet 0
  +
  Description 0.

  * Bullet 1
  --

The first include is parsed correctly, but the second include is parsed
as is.
</content>
</entry>
<entry>
<title>all: update share module to v0.41.0</title>
<updated>2022-09-04T15:33:29Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-09-04T15:33:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=42cc6b8a786b02ee8147400a80f2ef4fb5379a01'/>
<id>urn:sha1:42cc6b8a786b02ee8147400a80f2ef4fb5379a01</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: move all documentation into directory _doc</title>
<updated>2022-08-24T18:27:36Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-08-24T18:27:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=b8e20a54ac6fab854dcf508e7fa645d927dba892'/>
<id>urn:sha1:b8e20a54ac6fab854dcf508e7fa645d927dba892</id>
<content type='text'>
While at it reformat the README, add section for development, add
link for Go documentation.
</content>
</entry>
<entry>
<title>Release asciidoctor-go v0.3.1 (2022-08-06)</title>
<updated>2022-08-05T18:25:29Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-08-05T18:23:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=8a20b8b9d18543622eca6450091a44112efe34b0'/>
<id>urn:sha1:8a20b8b9d18543622eca6450091a44112efe34b0</id>
<content type='text'>
===  Chores

*  all: rewrite unit tests for inlineParser using test.Data
*  all: cleaning up codes
*  go.mod: update share to v0.40.0
</content>
</entry>
<entry>
<title>all: rewrite unit tests for inlineParser using test.Data</title>
<updated>2022-08-05T18:17:10Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-08-05T18:16:08Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=9fe1ecf6050bbebfe4096e5c41a1e711dd16190d'/>
<id>urn:sha1:9fe1ecf6050bbebfe4096e5c41a1e711dd16190d</id>
<content type='text'>
Using string literal for testing string input that may contains backtick
or double quote make the test code become unreadable and hard to modify.

The test.Data help this by moving the input and expected output into
a file that can we write as is.
</content>
</entry>
<entry>
<title>all: cleaning up codes</title>
<updated>2022-08-05T16:33:05Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-08-05T16:33:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=502ccd5e3f41f4fd1b3bfa1fad2c41785db1a7d1'/>
<id>urn:sha1:502ccd5e3f41f4fd1b3bfa1fad2c41785db1a7d1</id>
<content type='text'>
Use raw string literal whenever possible.
</content>
</entry>
<entry>
<title>go.mod: update share to v0.40.0</title>
<updated>2022-08-05T15:20:13Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-08-05T15:20:13Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=6df915293cd00fe6e8c8771399745a4532774710'/>
<id>urn:sha1:6df915293cd00fe6e8c8771399745a4532774710</id>
<content type='text'>
This update fix some issues related to new line on test.Data.
</content>
</entry>
<entry>
<title>Release asciidoctor-go v0.3.0 (2022-07-24)</title>
<updated>2022-07-24T14:41:14Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-07-24T14:41:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=58bd7778b3851a5d39b460140a410d963152882e'/>
<id>urn:sha1:58bd7778b3851a5d39b460140a410d963152882e</id>
<content type='text'>
This release set the minimum Go version to 1.18.

===  Breaking changes

*  all: refactoring handling generate ref ID

===  Enhancements

*  all: sort the generated HTML meta by names

*  all: store the list of author names under Attributes "author_names"

*  all: add default metadata "generator"

*  all: realign all structs

===  Chores

*  all: rewrite test using lib/test.Data
</content>
</entry>
</feed>
