diff options
| author | Shulhan <ms@kilabit.info> | 2025-02-13 19:20:19 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-02-13 20:32:18 +0700 |
| commit | 56a1e4c4bfa2adb882bd9f0fc33b16110a2d09bd (patch) | |
| tree | 701b1a8aef458a13595da4adf7e6659c1b205b1e /document_attribute.go | |
| parent | e0504ba09e1113b9638baff89442679a437db63b (diff) | |
| download | asciidoctor-go-56a1e4c4bfa2adb882bd9f0fc33b16110a2d09bd.tar.xz | |
all: add default HTML stylesheet
The generated HTML now contains the default stylesheet.
The stylesheet is copied from HTML file generated by Asciidoctor v2.0.23.
Diffstat (limited to 'document_attribute.go')
| -rw-r--r-- | document_attribute.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/document_attribute.go b/document_attribute.go index 7d40a50..ec86de1 100644 --- a/document_attribute.go +++ b/document_attribute.go @@ -41,6 +41,7 @@ const ( docAttrSectNumLevel = `sectnumlevels` docAttrSectNums = `sectnums` docAttrShowTitle = `showtitle` + docAttrStylesheet = `stylesheet` docAttrTOC = `toc` docAttrTOCLevels = `toclevels` docAttrTOCTitle = `toc-title` @@ -74,6 +75,7 @@ func newDocumentAttribute() DocumentAttribute { docAttrLastUpdateValue: ``, docAttrSectIDs: ``, docAttrShowTitle: ``, + docAttrStylesheet: ``, docAttrTableCaption: ``, docAttrVersionLabel: ``, }, |
