aboutsummaryrefslogtreecommitdiff
path: root/asciidoctor.go
diff options
context:
space:
mode:
Diffstat (limited to 'asciidoctor.go')
-rw-r--r--asciidoctor.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/asciidoctor.go b/asciidoctor.go
index 5d67769..3c89afa 100644
--- a/asciidoctor.go
+++ b/asciidoctor.go
@@ -1,5 +1,5 @@
-// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info>
// SPDX-License-Identifier: GPL-3.0-or-later
+// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info>
// Package asciidoctor is the Go module to parse the [AsciiDoc markup].
// Its currently support converting the asciidoc to HTML5.
@@ -13,12 +13,10 @@ import (
"git.sr.ht/~shulhan/pakakeh.go/lib/math/big"
)
-const (
- // Version of this module.
- Version = `0.7.2`
+// Version of this module.
+const Version = `0.7.3`
- _lf = "\n"
-)
+const _lf = "\n"
//go:embed default.css
var DefaultCSS string