<feed xmlns='http://www.w3.org/2005/Atom'>
<title>asciidoctor-go/testdata/test.adoc, branch main</title>
<subtitle>Native Go parser for asciidoc markup.</subtitle>
<id>http://git.kilabit.info/asciidoctor-go/atom?h=main</id>
<link rel='self' href='http://git.kilabit.info/asciidoctor-go/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/'/>
<updated>2026-04-04T09:38:06Z</updated>
<entry>
<title>all: fix parsing literal paragraph</title>
<updated>2026-04-04T09:38:06Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2026-04-04T09:38:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=45526ab31b93debffd51e1aaad43c9acf9d61ab6'/>
<id>urn:sha1:45526ab31b93debffd51e1aaad43c9acf9d61ab6</id>
<content type='text'>
A line that start with one or more space will be considered
as literal paragraph.
Once literal line found it will end until an empty line.
</content>
</entry>
<entry>
<title>testdata: add test for paragraph followed by unordered list</title>
<updated>2026-02-23T04:49:06Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2026-02-23T04:49:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=073830628f986293efc67db97b8729bc9d75f167'/>
<id>urn:sha1:073830628f986293efc67db97b8729bc9d75f167</id>
<content type='text'>
The asciidoctor behaviour will not recognize list that is not started
by empty line, similar to our implementation.
</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>testdata: add test data for unordered list with custom marker "[none]"</title>
<updated>2025-02-13T12:58:16Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-13T12:15:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=e0504ba09e1113b9638baff89442679a437db63b'/>
<id>urn:sha1:e0504ba09e1113b9638baff89442679a437db63b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: use strict document header format</title>
<updated>2024-08-12T16:40:43Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-08-12T16:40:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=e98aea8108d267fc5f8364d0e611698f413095c5'/>
<id>urn:sha1:e98aea8108d267fc5f8364d0e611698f413095c5</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>all: handle custom marker in between unordered list</title>
<updated>2023-05-30T15:12:59Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-05-30T15:12:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=4e0507b62393b8461b29cda7565f685d79b58ca3'/>
<id>urn:sha1:4e0507b62393b8461b29cda7565f685d79b58ca3</id>
<content type='text'>
Given the following markup,

  [square]
  * item 1
  [circle]
  ** item 2

The list on item 2 now start with `&lt;div class="ulist circle"&gt;`.
</content>
</entry>
<entry>
<title>all: add support for unordered list with '-'</title>
<updated>2023-05-28T13:55:38Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2023-05-28T13:55:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=6f7bb3e07398c80e782dd46045ce020a45067095'/>
<id>urn:sha1:6f7bb3e07398c80e782dd46045ce020a45067095</id>
<content type='text'>
The unordered list item with hyphen ('-') cause too much confusion and
inconsistency, nevertheless most of still use it.

Case one, given the following markup,

```
- Item 1
+
"A line
of quote"
-- Author
```

Is the "Author" the sub item in list or we are parsing author of quote
paragraph?

Case two, the writer want to write em dash (`&amp;#8212;` in HTML Unicode) but
somehow the editor wrap it and start in new line.

As a reminder, the official documentation only recommend using hyphen for
simple list item [1].

[1] https://docs.asciidoctor.org/asciidoc/latest/lists/unordered/#basic-unordered-list
</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>testdata: set attribute idprefix to empty</title>
<updated>2022-07-17T10:22:43Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-07-17T10:06:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=fc56cc03df60e2b322073e82163b2dc9e22af416'/>
<id>urn:sha1:fc56cc03df60e2b322073e82163b2dc9e22af416</id>
<content type='text'>
This is to make the generated HTML from asciidoctor match with the
library.
Without it, all IDs are prefixed with "_".
</content>
</entry>
<entry>
<title>all: relicense the asciidoctor-go under GPL 3.0 or later</title>
<updated>2022-02-21T16:15:49Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-02-21T16:15:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/asciidoctor-go/commit/?id=cd8ad3533865e852e0144c4497e5226e88c917ba'/>
<id>urn:sha1:cd8ad3533865e852e0144c4497e5226e88c917ba</id>
<content type='text'>
Signed-off-by: Shulhan &lt;ms@kilabit.info&gt;
</content>
</entry>
</feed>
