We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c37a1f commit e2c4cb4Copy full SHA for e2c4cb4
tests/docs/smoke-all/2025/03/31/383.qmd
@@ -0,0 +1,24 @@
1
+---
2
+format:
3
+ html: default
4
+ latex: default
5
+_quarto:
6
+ tests:
7
+ html:
8
+ ensureHtmlElements:
9
+ - ['a.quarto-xref[href~="#eq-x"]']
10
+ - []
11
+ ensureFileRegexMatches:
12
+ - ['x \+ z \\tag\{1\}']
13
+ - ['x \+ y']
14
+ latex:
15
16
+ - ['Equation\~\\ref\{eq-x\}', '\\label\{eq-x\}\{x \+ z\}']
17
+ - ['x + y']
18
+filters:
19
+ - eq.lua
20
21
+
22
+$$x + y$$ {#eq-x}
23
24
+See @eq-x.
tests/docs/smoke-all/2025/03/31/eq.lua
@@ -0,0 +1,4 @@
+function Math(el)
+ el.text = el.text:gsub("y", "z")
+ return el
+end
0 commit comments