Skip to content

Commit dacfb29

Browse files
committed
2 parents d7e883b + 25a6747 commit dacfb29

16 files changed

Lines changed: 740 additions & 344 deletions

File tree

.github/workflows/build-preview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: 22
2222

2323
- name: Cache dependencies
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.npm
2727
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -37,7 +37,7 @@ jobs:
3737
run: npx quartz build -d docs -v
3838

3939
- name: Upload build artifact
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: preview-build
4343
path: public

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
node-version: 22
3030

3131
- name: Cache dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.npm
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/deploy-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Deploy Preview to Cloudflare Pages
1919
steps:
2020
- name: Download build artifact
21-
uses: actions/download-artifact@v6
21+
uses: actions/download-artifact@v7
2222
id: preview-build-artifact
2323
with:
2424
name: preview-build

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
> [One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming
44
55
Quartz is a set of tools that helps you publish your [digital garden](https://jzhao.xyz/posts/networked-thought) and notes as a website for free.
6-
Quartz v4 features a from-the-ground rewrite focusing on end-user extensibility and ease-of-use.
76

87
🔗 Read the documentation and get started: https://quartz.jzhao.xyz/
98

docs/features/Docker Support.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ You can run the below one-liner to run Quartz in Docker.
55
```sh
66
docker run --rm -itp 8080:8080 -p 3001:3001 -v ./content:/usr/src/app/content $(docker build -q .)
77
```
8+
9+
> [!warning] Not to be used for production
10+
> Serve mode is intended for local previews only.
11+
> For production workloads, see the page on [[hosting]].

docs/features/popover previews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ By default, Quartz only fetches previews for pages inside your vault due to [COR
88

99
When [[creating components|creating your own components]], you can include this `popover-hint` class to also include it in the popover.
1010

11-
Similar to Obsidian, [[quartz layout.png|images referenced using wikilinks]] can also be viewed as popups.
11+
Similar to Obsidian, [[quartz-layout-desktop.png|images referenced using wikilinks]] can also be viewed as popups.
1212

1313
## Configuration
1414

0 commit comments

Comments
 (0)