<feed xmlns='http://www.w3.org/2005/Atom'>
<title>asciidoctor-go, branch v0.4.1</title>
<subtitle>Native Go parser for asciidoc markup.</subtitle>
<id>http://git.kilabit.info/asciidoctor-go/atom?h=v0.4.1</id>
<link rel='self' href='http://git.kilabit.info/asciidoctor-go/atom?h=v0.4.1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/'/>
<updated>2023-03-02T16:47:00Z</updated>
<entry>
<title>Release asciidoctor-go v0.4.1 (2023-03-02)</title>
<updated>2023-03-02T16:47:00Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-03-02T16:47:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=d2e6dd1abb7e506dbe8963c5662c95b74a7d2dfa'/>
<id>urn:sha1:d2e6dd1abb7e506dbe8963c5662c95b74a7d2dfa</id>
<content type='text'>
=== Bug fixes

* all: fix empty line printed on ToHTMLBody or ToHTMLEmbedded
* all: ignore parsing block image in paragraph

=== Enhancements

* all: handle empty preamble
</content>
</entry>
<entry>
<title>all: move CHANGELOG from _doc to root</title>
<updated>2023-03-02T16:41:19Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-03-02T16:41:19Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=7f263ce061a953380bf07d3d7777260ed3cd65f5'/>
<id>urn:sha1:7f263ce061a953380bf07d3d7777260ed3cd65f5</id>
<content type='text'>
The idea is to allow viewer to view the repository CHANGELOG without
changing to directory _doc.
</content>
</entry>
<entry>
<title>all: fix empty line printed on ToHTMLBody or ToHTMLEmbedded</title>
<updated>2023-03-02T16:37:49Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-03-02T16:37:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=6ce03f696112a0cb2db2898778312fc32b62439d'/>
<id>urn:sha1:6ce03f696112a0cb2db2898778312fc32b62439d</id>
<content type='text'>
Given the following adoc,

----
= T
----

If we call ToHTMLBody, the output is

----

&lt;div id="header"&gt;
&lt;h1&gt;T&lt;/h1&gt;
----

This changes fix the empty line at the top.
</content>
</entry>
<entry>
<title>all: handle empty preamble</title>
<updated>2023-03-02T16:25:12Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-02-12T05:54:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=fe8bd4d6305e82259eaac94972f1621aa52e89aa'/>
<id>urn:sha1:fe8bd4d6305e82259eaac94972f1621aa52e89aa</id>
<content type='text'>
If the document contains empty preamble do not output the HTML wrapper of
it.
</content>
</entry>
<entry>
<title>all: update share modules</title>
<updated>2023-03-02T16:02:01Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-03-02T16:02:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=7059665463bd648321fbd8c4b9227ead65767975'/>
<id>urn:sha1:7059665463bd648321fbd8c4b9227ead65767975</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: ignore parsing block image in paragraph</title>
<updated>2023-03-02T16:00:19Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-03-02T16:00:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=35c7edc6cb26bf63fc8cf1f61d5e33fc9ee620ef'/>
<id>urn:sha1:35c7edc6cb26bf63fc8cf1f61d5e33fc9ee620ef</id>
<content type='text'>
Previously, if we have block image in paragraph, we parse it as inline
image but with invalid src, for example

  image::my.png[multi
  line]

would be parsed as &lt;img src=":imy.png" alt="multi line"&gt;.
This is incorrect according to asciidoctor output.
</content>
</entry>
<entry>
<title>Release asciidoctor-go v0.4.0 (2023-02-12)</title>
<updated>2023-02-12T06:38:20Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-02-12T06:33:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=5b83f6228897c3a7f24fa7b60cb30310bb5f2dcf'/>
<id>urn:sha1:5b83f6228897c3a7f24fa7b60cb30310bb5f2dcf</id>
<content type='text'>
===  New features

* all: add support for document attribute "last-update-label"
* all: implement inline macro for passthrough ("pass:")
* all: implement macro "footnote:"

===  Bug fixes

* all: detach parsing preamble from content.
  This is to prevent empty preamble being rendered in HTML content.

* all: fix the orders of generated HTML meta

===  Enhancements

* all: support multi line attribute values
</content>
</entry>
<entry>
<title>go.mod: update share module to v0.43.0</title>
<updated>2023-02-12T06:19:33Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-02-12T06:19:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=511b22c4f4d46e5ece3d346d15b11d54edf25a0e'/>
<id>urn:sha1:511b22c4f4d46e5ece3d346d15b11d54edf25a0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: update reference for preamble and add unit test</title>
<updated>2022-12-19T16:41:07Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-12-19T16:41:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=1469a3cae77976a36462b2d990f6deca0fe352ac'/>
<id>urn:sha1:1469a3cae77976a36462b2d990f6deca0fe352ac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: support multi line attribute values</title>
<updated>2022-12-19T15:53:42Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-12-19T15:52:09Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=d9582373ece2f5da42725e22bb90c5daa93316df'/>
<id>urn:sha1:d9582373ece2f5da42725e22bb90c5daa93316df</id>
<content type='text'>
If the attribute value end with backslash '\', the value continue to the
next line.
</content>
</entry>
</feed>
