diff options
| author | Shulhan <ms@kilabit.info> | 2022-12-16 00:59:09 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-12-16 00:59:09 +0700 |
| commit | c53a0d3b197b8a28ca4fc6b765a6b182156ef27b (patch) | |
| tree | c5626cbcc7a5055947e05d4ba09026783d6a2fee /testdata/test.got.html | |
| parent | ab6eaa00847d5b468acbc503b7b19b3cc99fb8b8 (diff) | |
| download | asciidoctor-go-c53a0d3b197b8a28ca4fc6b765a6b182156ef27b.tar.xz | |
all: fix the orders of generated HTML meta
The meta tags from original asciidoctor are ordered as viewport,
generator, description, keywords, and then author.
While at it remove empty style tag due to when testing we use empty.css
not "stylesheet!".
Diffstat (limited to 'testdata/test.got.html')
| -rw-r--r-- | testdata/test.got.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testdata/test.got.html b/testdata/test.got.html index d21e7a4..512f9a7 100644 --- a/testdata/test.got.html +++ b/testdata/test.got.html @@ -4,14 +4,11 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> -<meta name="author" content="Author A, Author mid dle B"> +<meta name="generator" content="Asciidoctor 2.0.18"> <meta name="description" content="meta description"> -<meta name="generator" content="asciidoctor-go 0.3.2"> <meta name="keywords" content="key, words"> +<meta name="author" content="Author A, Author mid dle B"> <title>Example Document title</title> -<style> - -</style> </head> <body class="article"> <div id="header"> |
