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 32506df commit 1cfb484Copy full SHA for 1cfb484
CHANGES.md
@@ -27,6 +27,7 @@
27
compilation unit. This fixes cases where the dune rules would
28
fail. (@panglesd, #1069)
29
- Fix issue #1066 with extended opens (@jonludlam, #1082)
30
+- Fix missing katex headers (@panglesd, #1096)
31
32
33
# 2.4.0
src/document/doctree.ml
@@ -369,7 +369,7 @@ end = struct
369
370
and subpage : Subpage.t -> bool = fun x -> page x.content
371
372
- and page : Page.t -> bool = fun x -> items x.items
+ and page : Page.t -> bool = fun x -> items x.preamble || items x.items
373
374
and alternative : Alternative.t -> bool = function
375
| Expansion x -> documentedsrc x.expansion
0 commit comments