diff options
| author | Shulhan <ms@kilabit.info> | 2022-10-20 04:48:20 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-10-20 22:09:31 +0700 |
| commit | 26c0d32b05eefb9b7040be69717d58e62bbdac2f (patch) | |
| tree | 86d02f3bd444b5148733cee1dca2756bff1c1f3a /testdata/test.got.html | |
| parent | dc6f1e2a3e720b706dbf945ae6b608199f630fb4 (diff) | |
| download | asciidoctor-go-26c0d32b05eefb9b7040be69717d58e62bbdac2f.tar.xz | |
all: implement macro "footnote:"
Macro footnote grammar,
----
"footnote:" [ REF_ID ] "[" STRING "]"
----
In asciidoctor, footnote can be placed anywhere, even after WORD without
space in between.
The REF_ID, define the unique ID for footnote and can be used to reference
the previous footnote.
The first footnote with REF_ID, should have the STRING defined.
The next footnote with the same REF_ID, should not have the STRING
defined; if its defined, the STRING is ignored.
Diffstat (limited to 'testdata/test.got.html')
| -rw-r--r-- | testdata/test.got.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testdata/test.got.html b/testdata/test.got.html index 33b917d..d21e7a4 100644 --- a/testdata/test.got.html +++ b/testdata/test.got.html @@ -6,7 +6,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="Author A, Author mid dle B"> <meta name="description" content="meta description"> -<meta name="generator" content="asciidoctor-go 0.3.1"> +<meta name="generator" content="asciidoctor-go 0.3.2"> <meta name="keywords" content="key, words"> <title>Example Document title</title> <style> @@ -3000,7 +3000,7 @@ this sidebar.</p> <div id="footer"> <div id="footer-text"> 1.1.1<br> -Last updated 2022-09-04 23:41:43 +0700 +Last updated 2022-10-18 00:21:58 +0700 </div> </div> </body> |
