The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "docs: wording changes for offline support"

This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.

+3 -4
+1 -1
docs/features/offline access.md
··· 4 4 - plugin/emitter 5 5 --- 6 6 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` 8 8 9 9 ## Offline Capability 10 10
-1
quartz/components/Explorer.tsx
··· 22 22 return -1 23 23 } 24 24 }, 25 - filterFn: (node) => node.name !== "tags", 26 25 order: ["filter", "map", "sort"], 27 26 } satisfies Options 28 27
+1 -1
quartz/components/pages/OfflineFallbackPage.tsx
··· 4 4 return ( 5 5 <article class="popover-hint"> 6 6 <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> 8 8 </article> 9 9 ) 10 10 }
+1 -1
quartz/plugins/emitters/offline.ts
··· 62 62 const [tree, vfile] = defaultProcessedContent({ 63 63 slug, 64 64 text: "Offline", 65 - description: "You're offline and this page hasn't been cached yet.", 65 + description: "This page isn't offline available yet.", 66 66 frontmatter: { title: "Offline", tags: [] }, 67 67 }) 68 68