-
What is the difference of using
instead of
From a quick test, I need to use H1 for cross reference in books. For example,
will work when
will fail to create the cross reference. |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Nov 7, 2022
Replies: 1 comment
-
You can see this using your browser developper mode.
<main class="content" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Title</h1>
</div>
<div class="quarto-title-meta">
</div>
</header>
<section id="title" class="level1">
<h1>Title</h1>
</section>
</main> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rgaiacs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
title
is used inheader
HTML tag withtitle-block-header
id in adiv
with.quarto-title
class.# Title
is regular h1 title embedded insection
HTML tag withtitle
id.You can see this using your browser developper mode.