aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-12-16 00:59:35 +0700
committerShulhan <ms@kilabit.info>2022-12-16 00:59:35 +0700
commit60a55a32252e349f2bdfeace983c251ee5865fb6 (patch)
treed90635b33cd7e88a229c623f517eff5fd96a7e16
parentc53a0d3b197b8a28ca4fc6b765a6b182156ef27b (diff)
downloadasciidoctor-go-60a55a32252e349f2bdfeace983c251ee5865fb6.tar.xz
all: add package documentation and comment on Version
-rw-r--r--asciidoctor.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/asciidoctor.go b/asciidoctor.go
index 7772354..c6888ac 100644
--- a/asciidoctor.go
+++ b/asciidoctor.go
@@ -1,12 +1,17 @@
// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info>
// SPDX-License-Identifier: GPL-3.0-or-later
+// Package asciidoctor-go is the Go module to parse the [AsciiDoc markup].
+// Its currently support converting the asciidoc to HTML5.
+//
+// [AsciiDoc markup]: https://asciidoctor.org/docs/what-is-asciidoc
package asciidoctor
import "github.com/shuLhan/share/lib/math/big"
const (
- Version = `0.3.2`
+ // Version of this module.
+ Version = `0.3.3-dev`
)
func init() {