Skip to content

Commit f09ea0e

Browse files
committed
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
2 parents a9c8408 + ec00a40 commit f09ea0e

File tree

17 files changed

+840
-401
lines changed

17 files changed

+840
-401
lines changed

.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

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)