Skip to content

Commit 1a53a59

Browse files
committed
data-pagefind-ignore
1 parent 05abfad commit 1a53a59

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

web/src/components/AutoStarlightPage.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ const finalHtml = root.toString();
6060
---
6161

6262
<StarlightPage frontmatter={frontmatter} headings={headings}>
63-
<div id="_top" />
63+
<div data-pagefind-ignore id="_top" />
6464
<Fragment set:html={finalHtml} />
6565
</StarlightPage>

web/src/components/ChangelogList.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const { entries } = Astro.props;
1515
---
1616

1717
{entries.length > 0 && (
18-
<div class="changelog-section">
18+
<div data-pagefind-ignore class="changelog-section">
1919
<h4>Changelog</h4>
2020
<div class="changelog-list">
2121
{entries.map(entry => (

web/src/components/CodeExamplesSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if (codeExamples.length === 0 && !examplesRequired) {
2626
}
2727
---
2828

29-
<div class="examples-section">
29+
<div data-pagefind-ignore class="examples-section">
3030
{!hideHeader && (
3131
<h4>Code Examples</h4>
3232
)}

web/src/components/NoteBox.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface Props extends HTMLAttributes<'div'> {
99
const { type = 'info', class: className, ...rest } = Astro.props;
1010
---
1111

12-
<div
12+
<div data-pagefind-ignore
1313
class:list={[
1414
"custom-note-box",
1515
{

web/src/components/PreviewImages.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if (images?.length) {
3030
---
3131

3232
{images && images.length > 0 && (
33-
<div id="preview-images-gallery">
33+
<div data-pagefind-ignore id="preview-images-gallery">
3434
<h4>Gallery</h4>
3535
<p>Click on the image to view the full preview along with the description.</p>
3636

web/src/components/VersionBox.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const shouldShowBox = showRemoved || showAdded || showUpdated;
2727
</ItemDescription>
2828
) : (
2929
<div
30-
class={`added-updated-description-box${showRemoved ? " removed-box" : ""}`}
30+
data-pagefind-ignore class={`added-updated-description-box${showRemoved ? " removed-box" : ""}`}
3131
>
3232
<div class="added-updated-description-box-header">
3333
<p>

0 commit comments

Comments
 (0)