diff options
| author | Shulhan <ms@kilabit.info> | 2022-12-16 00:59:35 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-12-16 00:59:35 +0700 |
| commit | 60a55a32252e349f2bdfeace983c251ee5865fb6 (patch) | |
| tree | d90635b33cd7e88a229c623f517eff5fd96a7e16 | |
| parent | c53a0d3b197b8a28ca4fc6b765a6b182156ef27b (diff) | |
| download | asciidoctor-go-60a55a32252e349f2bdfeace983c251ee5865fb6.tar.xz | |
all: add package documentation and comment on Version
| -rw-r--r-- | asciidoctor.go | 7 |
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() { |
