diff options
Diffstat (limited to 'asciidoctor.go')
| -rw-r--r-- | asciidoctor.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/asciidoctor.go b/asciidoctor.go index 1a41f97..5d67769 100644 --- a/asciidoctor.go +++ b/asciidoctor.go @@ -7,7 +7,11 @@ // [AsciiDoc markup]: https://asciidoctor.org/docs/what-is-asciidoc package asciidoctor -import "git.sr.ht/~shulhan/pakakeh.go/lib/math/big" +import ( + _ "embed" + + "git.sr.ht/~shulhan/pakakeh.go/lib/math/big" +) const ( // Version of this module. @@ -16,6 +20,9 @@ const ( _lf = "\n" ) +//go:embed default.css +var DefaultCSS string + func init() { big.DefaultDigitPrecision = 6 } |
