<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ciigo, branch v0.15.1</title>
<subtitle>Static web server with AsciiDoc and Markdown.</subtitle>
<id>http://git.kilabit.info/ciigo/atom?h=v0.15.1</id>
<link rel='self' href='http://git.kilabit.info/ciigo/atom?h=v0.15.1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/'/>
<updated>2025-02-01T02:49:49Z</updated>
<entry>
<title>Release ciigo v0.15.1 (2025-02-01)</title>
<updated>2025-02-01T02:49:49Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-01T02:49:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=4c38d5303c0f2d4af9f75452989951a36652c953'/>
<id>urn:sha1:4c38d5303c0f2d4af9f75452989951a36652c953</id>
<content type='text'>
[BUG FIX]
Fix section detected as paragraph after list and comment.
Previously, given the following markup,
----
* Sub list
+
Sub list content.

//}}}
//{{{
== Sub 2
//}}
----
The section "Sub 2" will be parsed as paragraph instead of new section.

[CHORE]
In the linter, we replace the fieldalignment and shadow using our internal
gocheck command.
This linters actually have an API that can be combined into a program,
which provided by package "pakakeh.go/lib/goanalysis".
</content>
</entry>
<entry>
<title>make: derive GOBIN using "go env GOBIN"</title>
<updated>2025-02-01T02:48:18Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-01T02:48:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=4a4ff7a416cba297ef1172bcdf44ed69b9178033'/>
<id>urn:sha1:4a4ff7a416cba297ef1172bcdf44ed69b9178033</id>
<content type='text'>
The environment variable GOBIN may not set by user explicitly.

</content>
</entry>
<entry>
<title>all: replace external linters with internal linter</title>
<updated>2025-02-01T02:43:49Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-01T02:43:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=3453ab4a27367677de29e98d190da7f752aed5ed'/>
<id>urn:sha1:3453ab4a27367677de29e98d190da7f752aed5ed</id>
<content type='text'>
The fieldalignment and shadow is linter from golang.org/x/tools.
This linters actually have an API that can be combined into a program,
which provided by package "pakakeh.go/lib/goanalysis".

</content>
</entry>
<entry>
<title>go.mod: update asciidoctor-go</title>
<updated>2025-02-01T02:39:40Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-01T02:39:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=3fbbf969aa646d07d26e8d3c0f9a01aff52491a3'/>
<id>urn:sha1:3fbbf969aa646d07d26e8d3c0f9a01aff52491a3</id>
<content type='text'>
The latest release fix parsing section that is not detected after list
items.

</content>
</entry>
<entry>
<title>Release ciigo v0.15.0 (2025-01-08)</title>
<updated>2025-01-07T17:02:27Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-07T17:02:27Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=9130f2350eff5710b14ec6aeda7ddccd944c643c'/>
<id>urn:sha1:9130f2350eff5710b14ec6aeda7ddccd944c643c</id>
<content type='text'>
This is the first major release of ciigo on the new year of 2025.
We bring many enhancements and update on the documentation.

[ENHANCEMENT]
The first changes is refactoring to use watchfs/v2. The [watchfs/v2]
bring new enhancements by watching only single file instead of all
markup files for changes. This minimize number of goroutine calling
[os.Stat] on each markup files.

[BUG FIX]
When listing the file markups, if the node is symlink (either file or
directory) and target its not exist, continue to the next node instead
of returning error. The same is true for directory that cannot be
opened, probably due to broken symlink or permission.

[ENHANCEMENT]
In development mode, where [ServeOptions.IsDevelopment] is set to true
or when running "ciigo serve", the ciigo HTTP server will check if the
new markup file is newer than HTML file when user press refresh or
reload on the browser. If its newer, it will convert the markup file and
return the new content of HTML file.

This allow quick preview without waiting for watcher to complete.

[ENHANCEMENT]
The README has been revamped to include section on how to install ciigo
as program, how to running ciigo convert and serve, how to write content
and view it live on browser, and how to deploy it.

On the section "ciigo as library" we point the user the sample code at
"internal/cmd/ciigo-example" instead of writing long code at the front.

[BUG FIX]
This release also fix Exclude option does not get processed when calling
GoEmbed, or running "ciigo embed".
</content>
</entry>
<entry>
<title>all: update README simplify section "ciigo as library"</title>
<updated>2025-01-07T16:48:24Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-07T16:48:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=50b8bb50987d8fc8b848c05e07f16730a9883daf'/>
<id>urn:sha1:50b8bb50987d8fc8b848c05e07f16730a9883daf</id>
<content type='text'>
Instead of writing the code manually, show the where to look for
example, which is at "internal/cmd/ciigo-example".
</content>
</entry>
<entry>
<title>all: fix GoEmbed that does not excludes options from ConvertOptions</title>
<updated>2025-01-07T16:19:47Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-07T16:19:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=67a080cd6d2b08a192ad4b6977358645616ddb65'/>
<id>urn:sha1:67a080cd6d2b08a192ad4b6977358645616ddb65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: move example for ciigo as library to internal/cmd/ciigo-example</title>
<updated>2025-01-07T16:19:25Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-07T16:19:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=9a03cfb3c4289b9af54246950c957265ee83ecc5'/>
<id>urn:sha1:9a03cfb3c4289b9af54246950c957265ee83ecc5</id>
<content type='text'>
While at it, update the example index by removing unnecessary
external image, and update links to open in new tab/window.
</content>
</entry>
<entry>
<title>all: update README for running ciigo as CLI</title>
<updated>2025-01-06T17:53:09Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-06T14:35:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=028580508facc0924cab1666e8aeacdc72e280a1'/>
<id>urn:sha1:028580508facc0924cab1666e8aeacdc72e280a1</id>
<content type='text'>
In the README we add list of ciigo features, describe how to install
ciigo, reformat the Usage, add an example of running ciigo convert
and serve, how to write content and view it live on browser, and
how to deploy it using rsync.
</content>
</entry>
<entry>
<title>file_markup: convert extension to lowercase on markupKind only</title>
<updated>2025-01-06T17:13:55Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-01-06T16:32:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/ciigo/commit/?id=51ac42c62f8b1bd0c1669c01fa445cb1ed76d02e'/>
<id>urn:sha1:51ac42c62f8b1bd0c1669c01fa445cb1ed76d02e</id>
<content type='text'>
Converting extension to lowercase before trimming it may not remove
the extension itself since the string has changes.
</content>
</entry>
</feed>
