aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEvan Silberman <[email protected]>2025-01-27 16:44:34 -0800
committerJohn MacFarlane <[email protected]>2025-01-29 15:59:26 -0600
commitd680ce01001813d91911f0522effe097b4d0e862 (patch)
treebd9f9390fb38fe5c53a3e8968d7fb1cf29c5922c /test
parentf17de990b4041cc92e637e07b2bd4ffc6760c436 (diff)
Handle <abbr> as a span-like inline
Closes #5793
Diffstat (limited to 'test')
-rw-r--r--test/command/5793.md13
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>
+```