diff options
| -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() { |
