Skip to content

Commit 70e029d

Browse files
committed
Revert "docs: wording changes for offline support"
This reverts commit 52a172d.
1 parent 0bad3ce commit 70e029d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

docs/features/offline access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tags:
44
- plugin/emitter
55
---
66

7-
This plugin allows your website to be accessible offline and be installed as an app. You can enable it by adding `Plugin.Offline(),` to the `emitters` in `quartz.config.ts`
7+
This plugin allows your website to be accessible offline and be installed as an app. You can use it by adding `Plugin.Offline(),` to the `emitters` in `quartz.config.ts`
88

99
## Offline Capability
1010

quartz/components/Explorer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ const defaultOptions = {
2222
return -1
2323
}
2424
},
25-
filterFn: (node) => node.name !== "tags",
2625
order: ["filter", "map", "sort"],
2726
} satisfies Options
2827

quartz/components/pages/OfflineFallbackPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function OfflineFallbackPage() {
44
return (
55
<article class="popover-hint">
66
<h1>Offline</h1>
7-
<p>You're offline and this page hasn't been cached yet.</p>
7+
<p>This page isn't offline available yet.</p>
88
</article>
99
)
1010
}

quartz/plugins/emitters/offline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const Offline: QuartzEmitterPlugin = () => {
6262
const [tree, vfile] = defaultProcessedContent({
6363
slug,
6464
text: "Offline",
65-
description: "You're offline and this page hasn't been cached yet.",
65+
description: "This page isn't offline available yet.",
6666
frontmatter: { title: "Offline", tags: [] },
6767
})
6868

0 commit comments

Comments
 (0)