You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: news/changelog-1.9.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ All changes included in 1.9:
39
39
- ([#13555](https://github.com/quarto-dev/quarto-cli/issues/13555)): Add support for `icon=false` in callouts when used in `format: typst`.
40
40
- ([#13589](https://github.com/quarto-dev/quarto-cli/issues/13589)): Fix callouts with invalid ID prefixes crashing with "attempt to index a nil value". Callouts with unknown reference types now render as non-crossreferenceable callouts with a warning, ignoring the invalid ID.
41
41
- ([#13602](https://github.com/quarto-dev/quarto-cli/issues/13602)): Fix support for multiple files set in `bibliography` field in `biblio.typ` template partial.
42
+
- ([#13775](https://github.com/quarto-dev/quarto-cli/issues/13775)): Fix brand fonts not being applied when using `citeproc: true` with Typst format. Format detection now properly handles Pandoc format variants like `typst-citations`.
title: "Test variants are detected for HTML specific feature"
3
+
format:
4
+
html:
5
+
variant: +literate_haskell
6
+
html+without:
7
+
output-file: without
8
+
html+literate_haskell:
9
+
output-file: with_ext
10
+
reference-location: margin
11
+
_quarto:
12
+
tests:
13
+
html:
14
+
ensureHtmlElements:
15
+
-
16
+
- 'div.column-margin div#fn1'# this prove `isHtmlDocOutput()` is working
17
+
- []
18
+
printsMessage:
19
+
level: INFO
20
+
regex: "to: html\\+literate\\_haskell\n"
21
+
html+literate_haskell:
22
+
ensureHtmlElements:
23
+
-
24
+
- 'div.column-margin div#fn1'# this prove `isHtmlDocOutput()` is working
25
+
- []
26
+
printsMessage:
27
+
level: INFO
28
+
regex: "to: html\\+literate\\_haskell\n"
29
+
html+without:
30
+
ensureHtmlElements:
31
+
-
32
+
- 'div.column-margin div#fn1'# this prove `isHtmlDocOutput()` is working
33
+
- 'pre.sourceCode.haskell'
34
+
- ['pre.sourceCode.literatehaskell']
35
+
printsMessage:
36
+
level: INFO
37
+
regex: "to: html\n"
38
+
---
39
+
40
+
This documents tests that `isHtmlDocOutput()` is correctly detecting HTML even if there is a variant by checking some basic article layout feature are correctly working.
41
+
42
+
## Ref in margin should work
43
+
44
+
This is a reference[^1]
45
+
46
+
[^1]: This is the footnote text.
47
+
48
+
## see if extension is working (literate_haskell)
49
+
50
+
This is just to see if setting variants works correctly in Quarto
51
+
52
+
````{.haskell .literate}
53
+
unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
0 commit comments