diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2021-11-20 18:48:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 09:48:01 -0800 |
commit | 96a4bbe264b6eba8d334df0177d17a75e269bb47 (patch) | |
tree | 2772f3cdf7befe3447127ae0820818a760e0cc6d /test | |
parent | db9a73c84259beb8679a838ed4cd44fbdf45c568 (diff) | |
download | pandoc-96a4bbe264b6eba8d334df0177d17a75e269bb47.tar.gz |
Capture `alt-text` in JATS figures (#7703)
Co-authored-by: Aner Lucero <4rgento@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/command/jats-figure-alt-text.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command/jats-figure-alt-text.md b/test/command/jats-figure-alt-text.md new file mode 100644 index 000000000..229e52eda --- /dev/null +++ b/test/command/jats-figure-alt-text.md @@ -0,0 +1,18 @@ +``` +% pandoc -f jats -t native +<fig id="fig-1"> + <caption> + <p>bar</p> + </caption> + <alt-text>alternative-decription</alt-text> + <graphic xlink:href="foo.png" xlink:alt-text="baz" /> +</fig> +^D +[ Para + [ Image + ( "fig-1" , [] , [ ( "alt" , "alternative-decription" ) ] ) + [ Str "bar" ] + ( "foo.png" , "fig:" ) + ] +] +``` |