diff options
| author | Evan Silberman <[email protected]> | 2025-01-27 16:44:34 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-01-29 15:59:26 -0600 |
| commit | d680ce01001813d91911f0522effe097b4d0e862 (patch) | |
| tree | bd9f9390fb38fe5c53a3e8968d7fb1cf29c5922c /test | |
| parent | f17de990b4041cc92e637e07b2bd4ffc6760c436 (diff) | |
Handle <abbr> as a span-like inline
Closes #5793
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/5793.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/command/5793.md b/test/command/5793.md new file mode 100644 index 000000000..98e8cf8e1 --- /dev/null +++ b/test/command/5793.md @@ -0,0 +1,13 @@ +``` +% pandoc -f html -t djot +You can use <abbr title="Cascading Style Sheets">CSS</abbr> +^D +You can use [CSS]{.abbr title="Cascading Style Sheets"} +``` + +``` +% pandoc -f djot -t html +You can use [CSS]{.abbr title="Cascading Style Sheets"} +^D +<p>You can use <abbr title="Cascading Style Sheets">CSS</abbr></p> +``` |
