diff --git a/tests/docs/smoke-all/2024/01/10/8206.qmd b/tests/docs/smoke-all/2024/01/10/8206.qmd new file mode 100644 index 0000000000..420ee115ff --- /dev/null +++ b/tests/docs/smoke-all/2024/01/10/8206.qmd @@ -0,0 +1,25 @@ +--- +title: Hello World +code-annotations: true +format: + latex: default +code-line-numbers: true +_quarto: + tests: + latex: + ensureFileRegexMatches: + - + - '\\item\[\\circled\{1\}\]' + - '\\NormalTok\{\\circled\{1\}\}' + - '\\item\[\\circled\{2\}\]' + - '\\NormalTok\{\\circled\{2\}\}' +--- + +```rust +fn main() { + println!("Hello World!"); // <1> + return 0; // <2> +} +``` +1. Say hello. +2. Leave.