Quarto support Pandoc's header_attributes. But if .unnumbered or .unlisted is used, then the identifier doesn't get applied as a Typst label.
## Funding {#frontmatter .unnumbered .unlisted}
{{< lipsum 1 >}}
// no label
# Introduction {#intro}
{{< lipsum 3 >}}
// label: <intro>
## H2: Main Section
{{< lipsum 3 >}}
// label: <h2-main-section>
#block[
#heading(
level:
2
,
numbering:
none
,
outlined:
false
,
[
Funding
]
)
]
...
= Introduction
<intro>
...
== H2: Main Section
<h2-main-section>
❯ quarto --version
1.8.25
❯ lsb_release -a
LSB Version: n/a
Distributor ID: EndeavourOS
Description: EndeavourOS Linux
Release: rolling
Codename: rolling
```</div>