summaryrefslogtreecommitdiff
path: root/tests/ref
diff options
context:
space:
mode:
authorLachlan Kermode <lachiekermode@gmail.com>2025-06-11 16:07:25 +0200
committerGitHub <noreply@github.com>2025-06-11 14:07:25 +0000
commit1f5846ce246672701fbec918db9b1d05c8920895 (patch)
treed0f8cb5cf2888a18fbd0b21012f4523b1f0ca543 /tests/ref
parentd7e0c52dd5b6b34861c4104925d2440f5a770a47 (diff)
Render `#super` as `<sup>`, `#sub` as `<sub>` in HTML (#6422)
Diffstat (limited to 'tests/ref')
-rw-r--r--tests/ref/html/basic-sup-sub.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ref/html/basic-sup-sub.html b/tests/ref/html/basic-sup-sub.html
new file mode 100644
index 00000000..54187215
--- /dev/null
+++ b/tests/ref/html/basic-sup-sub.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <p>1<sup>st</sup>, 2<sup>nd</sup>, 3<sup>rd</sup>.</p>
+ <p>log<sub>2</sub>, log<sub>3</sub>, log<sub>variable</sub>.</p>
+ </body>
+</html>