Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
| | |
| | | - plugin/emitter |
| | | --- |
| | | |
| | | 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` |
| | | 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` |
| | | |
| | | ## Offline Capability |
| | | |
| | |
| | | return -1 |
| | | } |
| | | }, |
| | | filterFn: (node) => node.name !== "tags", |
| | | order: ["filter", "map", "sort"], |
| | | } satisfies Options |
| | | |
| | |
| | | return ( |
| | | <article class="popover-hint"> |
| | | <h1>Offline</h1> |
| | | <p>You're offline and this page hasn't been cached yet.</p> |
| | | <p>This page isn't offline available yet.</p> |
| | | </article> |
| | | ) |
| | | } |
| | |
| | | const [tree, vfile] = defaultProcessedContent({ |
| | | slug, |
| | | text: "Offline", |
| | | description: "You're offline and this page hasn't been cached yet.", |
| | | description: "This page isn't offline available yet.", |
| | | frontmatter: { title: "Offline", tags: [] }, |
| | | }) |
| | | |