diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml
deleted file mode 100644
index 0c71f41..0000000
--- a/.github/workflows/build-preview.yaml
+++ /dev/null
@@ -1,54 +0,0 @@
-name: Build Preview Deployment
-
-on:
- pull_request:
- types: [opened, synchronize]
- workflow_dispatch:
-
-jobs:
- build-preview:
- if: ${{ github.repository == 'jackyzha0/quartz' }}
- runs-on: ubuntu-latest
- name: Build Preview
- steps:
- - uses: actions/checkout@v6
- with:
- fetch-depth: 0
-
- - name: Setup Node
- uses: actions/setup-node@v6
- with:
- node-version: 22
-
- - name: Cache dependencies
- uses: actions/cache@v5
- with:
- path: ~/.npm
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-
-
- - name: Cache Quartz plugins
- uses: actions/cache@v5
- with:
- path: .quartz/plugins
- key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }}
- restore-keys: |
- ${{ runner.os }}-plugins-
-
- - run: npm ci
-
- - name: Install Quartz plugins
- run: npx quartz plugin install
-
- - name: Check types and style
- run: npm run check
-
- - name: Build Quartz
- run: npx quartz build -d docs -v
-
- - name: Upload build artifact
- uses: actions/upload-artifact@v6
- with:
- name: preview-build
- path: public
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 62e31d7..0000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,83 +0,0 @@
-name: Build and Test
-
-on:
- pull_request:
- branches:
- - v5
- push:
- branches:
- - v5
- workflow_dispatch:
-
-jobs:
- build-and-test:
- if: ${{ github.repository == 'jackyzha0/quartz' }}
- strategy:
- matrix:
- os: [windows-latest, macos-latest, ubuntu-latest]
- runs-on: ${{ matrix.os }}
- permissions:
- contents: write
- steps:
- - uses: actions/checkout@v6
- with:
- fetch-depth: 0
-
- - name: Setup Node
- uses: actions/setup-node@v6
- with:
- node-version: 24
-
- - name: Cache dependencies
- uses: actions/cache@v5
- with:
- path: ~/.npm
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-
-
- - name: Cache Quartz plugins
- uses: actions/cache@v5
- with:
- path: .quartz/plugins
- key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }}
- restore-keys: |
- ${{ runner.os }}-plugins-
-
- - run: npm ci
-
- - name: Install Quartz plugins
- run: npx quartz plugin install
-
- - name: Check types and style
- run: npm run check
-
- - name: Test
- run: npm test
-
- - name: Ensure Quartz builds, check bundle info
- run: npx quartz build --bundleInfo -d docs
-
- publish-tag:
- if: ${{ github.repository == 'jackyzha0/quartz' && github.ref == 'refs/heads/v5' }}
- runs-on: ubuntu-latest
- permissions:
- contents: write
- steps:
- - uses: actions/checkout@v6
- with:
- fetch-depth: 0
- - name: Setup Node
- uses: actions/setup-node@v6
- with:
- node-version: 24
- - name: Get package version
- run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
- - name: Create release tag
- uses: pkgdeps/git-tag-action@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- github_repo: ${{ github.repository }}
- version: ${{ env.PACKAGE_VERSION }}
- git_commit_sha: ${{ github.sha }}
- git_tag_prefix: "v"
diff --git a/.github/workflows/deploy-preview.yaml b/.github/workflows/deploy-preview.yaml
deleted file mode 100644
index e2663be..0000000
--- a/.github/workflows/deploy-preview.yaml
+++ /dev/null
@@ -1,37 +0,0 @@
-name: Upload Preview Deployment
-on:
- workflow_run:
- workflows: ["Build Preview Deployment"]
- types:
- - completed
-
-permissions:
- actions: read
- deployments: write
- contents: read
- pull-requests: write
-
-jobs:
- deploy-preview:
- if: ${{ github.repository == 'jackyzha0/quartz' && github.event.workflow_run.conclusion == 'success' }}
- runs-on: ubuntu-latest
- name: Deploy Preview to Cloudflare Pages
- steps:
- - name: Download build artifact
- uses: actions/download-artifact@v7
- id: preview-build-artifact
- with:
- name: preview-build
- path: build
- github-token: ${{ secrets.GITHUB_TOKEN }}
- run-id: ${{ github.event.workflow_run.id }}
-
- - name: Deploy to Cloudflare Pages
- uses: AdrianGonz97/refined-cf-pages-action@v1
- with:
- apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
- accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- githubToken: ${{ secrets.GITHUB_TOKEN }}
- projectName: quartz
- deploymentName: Branch Preview
- directory: ${{ steps.preview-build-artifact.outputs.download-path }}
diff --git a/.github/workflows/deploy-v5.yaml b/.github/workflows/deploy-v5.yaml
deleted file mode 100644
index 5f2fb2e..0000000
--- a/.github/workflows/deploy-v5.yaml
+++ /dev/null
@@ -1,64 +0,0 @@
-name: Deploy v5 Preview
-
-on:
- push:
- branches:
- - v5
- workflow_dispatch:
-
-permissions:
- contents: read
- deployments: write
-
-jobs:
- deploy-v5:
- if: ${{ github.repository == 'jackyzha0/quartz' }}
- runs-on: ubuntu-latest
- name: Deploy v5 to Cloudflare Pages
- steps:
- - uses: actions/checkout@v6
- with:
- fetch-depth: 0
-
- - name: Setup Node
- uses: actions/setup-node@v6
- with:
- node-version: 24
-
- - name: Cache dependencies
- uses: actions/cache@v5
- with:
- path: ~/.npm
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-
-
- - name: Cache Quartz plugins
- uses: actions/cache@v5
- with:
- path: .quartz/plugins
- key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }}
- restore-keys: |
- ${{ runner.os }}-plugins-
-
- - run: npm ci
-
- - name: Install Quartz plugins
- run: npx quartz plugin install
-
- - name: Check types and style
- run: npm run check
-
- - name: Build Quartz
- run: npx quartz build -d docs -v
-
- - name: Deploy to Cloudflare Pages
- uses: AdrianGonz97/refined-cf-pages-action@v1
- with:
- apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
- accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- githubToken: ${{ secrets.GITHUB_TOKEN }}
- projectName: quartz
- deploymentName: v5 Branch Preview
- branch: v5
- directory: public
diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml
deleted file mode 100644
index a00f95b..0000000
--- a/.github/workflows/docker-build-push.yaml
+++ /dev/null
@@ -1,88 +0,0 @@
-name: Docker build & push image
-
-on:
- push:
- branches: [v5]
- tags: ["v*"]
- pull_request:
- branches: [v5]
- paths:
- - .github/workflows/docker-build-push.yaml
- - quartz/**
- workflow_dispatch:
-
-jobs:
- build:
- if: ${{ github.repository == 'jackyzha0/quartz' }} # Comment this out if you want to publish your own images on a fork!
- runs-on: ubuntu-latest
- steps:
- - name: Set lowercase repository owner environment variable
- run: |
- echo "OWNER_LOWERCASE=${OWNER,,}" >> ${GITHUB_ENV}
- env:
- OWNER: "${{ github.repository_owner }}"
- - uses: actions/checkout@v6
- with:
- fetch-depth: 1
- - name: Inject slug/short variables
- uses: rlespinasse/github-slug-action@v5.4.0
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v3
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
- with:
- install: true
- driver-opts: |
- image=moby/buildkit:master
- network=host
- - name: Install cosign
- if: github.event_name != 'pull_request'
- uses: sigstore/cosign-installer@v4.0.0
- - name: Login to GitHub Container Registry
- uses: docker/login-action@v3
- if: github.event_name != 'pull_request'
- with:
- registry: ghcr.io
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Extract metadata tags and labels on PRs
- if: github.event_name == 'pull_request'
- id: meta-pr
- uses: docker/metadata-action@v5
- with:
- images: ghcr.io/${{ env.OWNER_LOWERCASE }}/quartz
- tags: |
- type=raw,value=sha-${{ env.GITHUB_SHA_SHORT }}
- labels: |
- org.opencontainers.image.source="https://github.com/${{ github.repository_owner }}/quartz"
- - name: Extract metadata tags and labels for main, release or tag
- if: github.event_name != 'pull_request'
- id: meta
- uses: docker/metadata-action@v5
- with:
- flavor: |
- latest=auto
- images: ghcr.io/${{ env.OWNER_LOWERCASE }}/quartz
- tags: |
- type=semver,pattern={{version}}
- type=semver,pattern={{major}}.{{minor}}
- type=semver,pattern={{major}}.{{minor}}.{{patch}}
- type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
- type=raw,value=sha-${{ env.GITHUB_SHA_SHORT }}
- labels: |
- maintainer=${{ github.repository_owner }}
- org.opencontainers.image.source="https://github.com/${{ github.repository_owner }}/quartz"
-
- - name: Build and push Docker image
- id: build-and-push
- uses: docker/build-push-action@v6
- with:
- push: ${{ github.event_name != 'pull_request' }}
- build-args: |
- GIT_SHA=${{ env.GITHUB_SHA }}
- DOCKER_LABEL=sha-${{ env.GITHUB_SHA_SHORT }}
- tags: ${{ steps.meta.outputs.tags || steps.meta-pr.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels || steps.meta-pr.outputs.labels }}
- cache-from: type=gha
- cache-to: type=gha
diff --git a/README.md b/README.md
deleted file mode 100644
index bcdbbf4..0000000
--- a/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Quartz v5
-
-> “[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
-
-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.
-
-🔗 Read the documentation and get started: https://quartz.jzhao.xyz/
-
-[Join the Discord Community](https://discord.gg/cRFFHYye7t)
-
-## Sponsors
-
-
-
-
-
-
diff --git a/content b/content
new file mode 120000
index 0000000..19e0bf6
--- /dev/null
+++ b/content
@@ -0,0 +1 @@
+/home/zaine/master-folder/vault-master
\ No newline at end of file
diff --git a/content/.gitkeep b/content/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/quartz.config.yaml b/quartz.config.yaml
new file mode 100644
index 0000000..e783eb9
--- /dev/null
+++ b/quartz.config.yaml
@@ -0,0 +1,297 @@
+# yaml-language-server: $schema=./quartz/plugins/quartz-plugins.schema.json
+configuration:
+ pageTitle: Quartz 5
+ pageTitleSuffix: ""
+ enableSPA: true
+ enablePopovers: true
+ analytics:
+ provider: plausible
+ locale: en-US
+ baseUrl: notes.zainezq.com
+ ignorePatterns:
+ - private
+ - templates
+ - .obsidian
+ theme:
+ fontOrigin: googleFonts
+ cdnCaching: true
+ typography:
+ header: Schibsted Grotesk
+ body: Source Sans Pro
+ code: IBM Plex Mono
+ colors:
+ lightMode:
+ light: "#faf8f8"
+ lightgray: "#e5e5e5"
+ gray: "#b8b8b8"
+ darkgray: "#4e4e4e"
+ dark: "#2b2b2b"
+ secondary: "#284b63"
+ tertiary: "#84a59d"
+ highlight: rgba(143, 159, 169, 0.15)
+ textHighlight: "#fff23688"
+ darkMode:
+ light: "#161618"
+ lightgray: "#393639"
+ gray: "#646464"
+ darkgray: "#d4d4d4"
+ dark: "#ebebec"
+ secondary: "#7b97aa"
+ tertiary: "#84a59d"
+ highlight: rgba(143, 159, 169, 0.15)
+ textHighlight: "#b3aa0288"
+plugins:
+ - source: github:quartz-community/created-modified-date
+ enabled: true
+ options:
+ defaultDateType: modified
+ priority:
+ - frontmatter
+ - git
+ - filesystem
+ order: 10
+ - source: github:quartz-community/syntax-highlighting
+ enabled: true
+ options:
+ theme:
+ light: github-light
+ dark: github-dark
+ keepBackground: false
+ order: 20
+ - source: github:quartz-community/obsidian-flavored-markdown
+ enabled: true
+ options:
+ comments: true
+ highlight: true
+ wikilinks: true
+ callouts: true
+ mermaid: true
+ parseTags: true
+ parseArrows: true
+ parseBlockReferences: true
+ enableInHtmlEmbed: false
+ enableYouTubeEmbed: true
+ enableVideoEmbed: true
+ enableCheckbox: true
+ order: 30
+ - source: github:quartz-community/github-flavored-markdown
+ enabled: true
+ order: 40
+ - source: github:quartz-community/table-of-contents
+ enabled: true
+ order: 50
+ layout:
+ position: right
+ priority: 30
+ - source: github:quartz-community/crawl-links
+ enabled: true
+ options:
+ markdownLinkResolution: shortest
+ order: 60
+ - source: github:quartz-community/description
+ enabled: true
+ order: 70
+ - source: github:quartz-community/latex
+ enabled: true
+ options:
+ renderEngine: katex
+ order: 80
+ - source: github:quartz-community/citations
+ enabled: false
+ order: 85
+ - source: github:quartz-community/hard-line-breaks
+ enabled: true
+ order: 90
+ - source: github:quartz-community/ox-hugo
+ enabled: false
+ order: 91
+ - source: github:quartz-community/roam
+ enabled: false
+ order: 92
+ - source: github:quartz-community/remove-draft
+ enabled: true
+ - source: github:quartz-community/explicit-publish
+ enabled: false
+ - source: github:quartz-community/unlisted-pages
+ enabled: true
+ options: {}
+ order: 45
+ - source: github:quartz-community/encrypted-pages
+ enabled: true
+ options:
+ iterations: 600000
+ passwordField: password
+ unlistWhenEncrypted: false
+ outputPath: static/encryptedContentIndex.json
+ - source: github:quartz-community/stacked-pages
+ enabled: false
+ layout:
+ position: afterBody
+ priority: 50
+ display: all
+ - source: github:quartz-community/alias-redirects
+ enabled: true
+ - source: github:quartz-community/content-index
+ enabled: true
+ options:
+ enableSiteMap: true
+ enableRSS: true
+ - source: github:quartz-community/favicon
+ enabled: true
+ - source: github:quartz-community/og-image
+ enabled: true
+ - source: github:quartz-community/cname
+ enabled: true
+ - source: github:quartz-community/canvas-page
+ enabled: true
+ - source: github:quartz-community/content-page
+ enabled: true
+ - source: github:quartz-community/folder-page
+ enabled: true
+ - source: github:quartz-community/tag-page
+ enabled: true
+ - source: github:quartz-community/explorer
+ enabled: true
+ layout:
+ position: left
+ priority: 50
+ - source: github:quartz-community/graph
+ enabled: true
+ layout:
+ position: right
+ priority: 10
+ - source: github:quartz-community/search
+ enabled: true
+ layout:
+ position: left
+ priority: 20
+ group: toolbar
+ groupOptions:
+ grow: true
+ - source: github:quartz-community/backlinks
+ enabled: true
+ layout:
+ position: right
+ priority: 50
+ - source: github:quartz-community/article-title
+ enabled: true
+ layout:
+ position: beforeBody
+ priority: 10
+ - source: github:quartz-community/content-meta
+ enabled: true
+ layout:
+ position: beforeBody
+ priority: 20
+ - source: github:quartz-community/tag-list
+ enabled: false
+ layout:
+ position: beforeBody
+ priority: 30
+ - source: github:quartz-community/page-title
+ enabled: true
+ layout:
+ position: left
+ priority: 10
+ - source: github:quartz-community/darkmode
+ enabled: true
+ layout:
+ position: left
+ priority: 30
+ group: toolbar
+ - source: github:quartz-community/reader-mode
+ enabled: true
+ layout:
+ position: left
+ priority: 35
+ group: toolbar
+ - source: github:quartz-community/breadcrumbs
+ enabled: true
+ layout:
+ position: beforeBody
+ priority: 5
+ condition: not-index
+ - source: github:quartz-community/comments
+ enabled: false
+ options:
+ provider: giscus
+ options: {}
+ layout:
+ position: afterBody
+ priority: 10
+ - source: github:quartz-community/footer
+ enabled: true
+ options:
+ links:
+ GitHub: https://github.com/jackyzha0/quartz
+ Discord Community: https://discord.gg/cRFFHYye7t
+ - source: github:quartz-community/recent-notes
+ enabled: false
+ - source: github:quartz-community/spacer
+ enabled: true
+ options: {}
+ order: 25
+ layout:
+ position: left
+ priority: 25
+ display: mobile-only
+ - source: github:quartz-community/bases-page
+ enabled: true
+ options: {}
+ order: 50
+ - source: github:quartz-community/note-properties
+ enabled: true
+ options:
+ includeAll: false
+ includedProperties:
+ - description
+ - tags
+ - aliases
+ excludedProperties: []
+ hidePropertiesView: false
+ delimiters: ---
+ language: yaml
+ order: 5
+ layout:
+ position: beforeBody
+ priority: 15
+ display: all
+ - source:
+ name: quartz-themes
+ repo: github:saberzero1/quartz-themes
+ subdir: plugin
+ enabled: true
+ options:
+ theme: default
+ - source: github:quartz-community/obsidian-plugin-excalidraw
+ enabled: true
+ options:
+ enableInteraction: true
+ darkMode: auto
+ exportPadding: 20
+ order: 50
+layout:
+ groups:
+ toolbar:
+ priority: 35
+ direction: row
+ gap: 0.5rem
+ byPageType:
+ "404":
+ positions:
+ beforeBody: []
+ left: []
+ right: []
+ content: {}
+ folder:
+ exclude:
+ - reader-mode
+ positions:
+ right: []
+ tag:
+ exclude:
+ - reader-mode
+ positions:
+ right: []
+ canvas: {}
+ bases: {}
diff --git a/quartz.lock.json b/quartz.lock.json
index 21f06ed..0ea3f41 100644
--- a/quartz.lock.json
+++ b/quartz.lock.json
@@ -5,199 +5,193 @@
"source": "github:quartz-community/alias-redirects",
"resolved": "https://github.com/quartz-community/alias-redirects.git",
"commit": "c46bc82fb9c93612902de6ab6880d28d7789b471",
- "installedAt": "2026-05-24T15:36:16.431Z"
+ "installedAt": "2026-06-02T10:09:02.257Z"
},
"article-title": {
"source": "github:quartz-community/article-title",
"resolved": "https://github.com/quartz-community/article-title.git",
"commit": "5c5f7c702c4f56c95cee881d5440ec21a8970ba8",
- "installedAt": "2026-05-24T15:36:16.464Z"
+ "installedAt": "2026-06-02T10:09:05.862Z"
},
"backlinks": {
"source": "github:quartz-community/backlinks",
"resolved": "https://github.com/quartz-community/backlinks.git",
"commit": "51c8954108ec68a0293dc7924af703ae59c78f5a",
- "installedAt": "2026-05-24T15:36:16.408Z"
+ "installedAt": "2026-06-02T10:09:05.496Z"
},
"bases-page": {
"source": "github:quartz-community/bases-page",
"resolved": "https://github.com/quartz-community/bases-page.git",
"commit": "ec5711f91e40b1e8477a101f6e2604926e4f0222",
- "installedAt": "2026-05-26T16:15:16.668Z"
+ "installedAt": "2026-06-02T10:09:07.857Z"
},
"breadcrumbs": {
"source": "github:quartz-community/breadcrumbs",
"resolved": "https://github.com/quartz-community/breadcrumbs.git",
"commit": "2f7ec9a7ef80ad5128d18205548f1132a2cf150a",
- "installedAt": "2026-05-24T15:36:16.467Z"
+ "installedAt": "2026-06-02T10:09:06.591Z"
},
"canvas-page": {
"source": "github:quartz-community/canvas-page",
"resolved": "https://github.com/quartz-community/canvas-page.git",
"commit": "2e6d05ce087cf9b6de4dc9fa72590a3047170daa",
- "installedAt": "2026-05-22T23:14:25.465Z"
+ "installedAt": "2026-06-02T10:09:04.070Z"
},
"citations": {
"source": "github:quartz-community/citations",
"resolved": "https://github.com/quartz-community/citations.git",
"commit": "2ad133a123c5b15b7c41d4fb684d422622113081",
- "installedAt": "2026-05-24T15:36:16.430Z"
+ "installedAt": "2026-06-02T10:09:00.409Z"
},
"cname": {
"source": "github:quartz-community/cname",
"resolved": "https://github.com/quartz-community/cname.git",
"commit": "ec4c81c91da13a6f6c2cbe1656daf5c14575dab3",
- "installedAt": "2026-05-24T15:36:16.443Z"
+ "installedAt": "2026-06-02T10:09:03.684Z"
},
"comments": {
"source": "github:quartz-community/comments",
"resolved": "https://github.com/quartz-community/comments.git",
"commit": "278115200a9bacfc0ee4695b200a5843d15517f3",
- "installedAt": "2026-05-24T15:36:16.462Z"
+ "installedAt": "2026-06-02T10:09:07.067Z"
},
"content-index": {
"source": "github:quartz-community/content-index",
"resolved": "https://github.com/quartz-community/content-index.git",
"commit": "34621a71940977a6af6b20abd5dc552d81181b6b",
- "installedAt": "2026-05-24T15:36:16.460Z"
+ "installedAt": "2026-06-02T10:09:03.662Z"
},
"content-meta": {
"source": "github:quartz-community/content-meta",
"resolved": "https://github.com/quartz-community/content-meta.git",
"commit": "a148b4104e9fb6323a6459b2f13c46f9a92da487",
- "installedAt": "2026-05-24T15:36:16.441Z"
+ "installedAt": "2026-06-02T10:09:05.770Z"
},
"content-page": {
"source": "github:quartz-community/content-page",
"resolved": "https://github.com/quartz-community/content-page.git",
"commit": "977d15f083f5b5de4b299c8f016e4e61fd422716",
- "installedAt": "2026-05-24T15:36:16.471Z"
+ "installedAt": "2026-06-02T10:09:04.385Z"
},
"crawl-links": {
"source": "github:quartz-community/crawl-links",
"resolved": "https://github.com/quartz-community/crawl-links.git",
"commit": "69497e22046d62ee601415ad832bcde89a70a544",
- "installedAt": "2026-05-26T15:56:37.042Z"
+ "installedAt": "2026-06-02T10:08:59.136Z"
},
"created-modified-date": {
"source": "github:quartz-community/created-modified-date",
"resolved": "https://github.com/quartz-community/created-modified-date.git",
"commit": "c003199fb842969d43ee9e0f54120a85e588260e",
- "installedAt": "2026-05-24T15:36:16.447Z"
+ "installedAt": "2026-06-02T10:08:58.401Z"
},
"darkmode": {
"source": "github:quartz-community/darkmode",
"resolved": "https://github.com/quartz-community/darkmode.git",
"commit": "dedd9606147e9d995a4376b0d03e469e39e94f85",
- "installedAt": "2026-05-24T15:36:16.475Z"
+ "installedAt": "2026-06-02T10:09:06.499Z"
},
"description": {
"source": "github:quartz-community/description",
"resolved": "https://github.com/quartz-community/description.git",
"commit": "026e63bd46d5f7feed58373f999ed98bf8248a26",
- "installedAt": "2026-05-24T15:36:16.445Z"
+ "installedAt": "2026-06-02T10:08:59.685Z"
},
"encrypted-pages": {
"source": "github:quartz-community/encrypted-pages",
"resolved": "https://github.com/quartz-community/encrypted-pages.git",
"commit": "e0e08e7afa40b97909fb24fd7509ddaa10116425",
- "installedAt": "2026-05-24T15:36:17.007Z"
+ "installedAt": "2026-06-02T10:09:04.270Z"
},
"explicit-publish": {
"source": "github:quartz-community/explicit-publish",
"resolved": "https://github.com/quartz-community/explicit-publish.git",
"commit": "4afb630a1cc9034267beb93c928e81d0fa2f4d4b",
- "installedAt": "2026-05-24T15:36:16.960Z"
+ "installedAt": "2026-06-02T10:09:01.004Z"
},
"explorer": {
"source": "github:quartz-community/explorer",
"resolved": "https://github.com/quartz-community/explorer.git",
"commit": "69389c917af8f8c74372c70b600ef4652f20c8f2",
- "installedAt": "2026-05-24T15:36:16.853Z"
+ "installedAt": "2026-06-02T10:09:04.912Z"
},
"favicon": {
"source": "github:quartz-community/favicon",
"resolved": "https://github.com/quartz-community/favicon.git",
"commit": "85842d5c15f937a3d1a02c45accee27118146d73",
- "installedAt": "2026-05-24T15:36:16.980Z"
+ "installedAt": "2026-06-02T10:09:02.895Z"
},
"folder-page": {
"source": "github:quartz-community/folder-page",
"resolved": "https://github.com/quartz-community/folder-page.git",
"commit": "a538b8e548a0215568942a3d94b042010a86d66b",
- "installedAt": "2026-05-24T15:36:16.992Z"
+ "installedAt": "2026-06-02T10:09:04.449Z"
},
"footer": {
"source": "github:quartz-community/footer",
"resolved": "https://github.com/quartz-community/footer.git",
"commit": "9e3f6d734d886eac0d41841c4dc8862b377fcaf4",
- "installedAt": "2026-05-25T15:27:47.250Z"
+ "installedAt": "2026-06-02T10:09:08.268Z"
},
"github-flavored-markdown": {
"source": "github:quartz-community/github-flavored-markdown",
"resolved": "https://github.com/quartz-community/github-flavored-markdown.git",
"commit": "3eabbaa252ce175665ab3f62e1af25948a83e8b6",
- "installedAt": "2026-05-24T15:36:17.005Z"
+ "installedAt": "2026-06-02T10:08:58.485Z"
},
"graph": {
"source": "github:quartz-community/graph",
"resolved": "https://github.com/quartz-community/graph.git",
"commit": "67ac4993907618a0ea5bd33726f792c572cddbad",
- "installedAt": "2026-05-26T17:45:56.210Z"
+ "installedAt": "2026-06-02T10:09:05.149Z"
},
"hard-line-breaks": {
"source": "github:quartz-community/hard-line-breaks",
"resolved": "https://github.com/quartz-community/hard-line-breaks.git",
"commit": "0d448f38a24c568c5539ff2cd57d813293430ccd",
- "installedAt": "2026-05-24T15:36:17.005Z"
+ "installedAt": "2026-06-02T10:09:02.386Z"
},
"latex": {
"source": "github:quartz-community/latex",
"resolved": "https://github.com/quartz-community/latex.git",
"commit": "3dcfedcb5ae5e28b71248a72665ccb881e82c185",
- "installedAt": "2026-05-24T15:36:16.994Z"
+ "installedAt": "2026-06-02T10:09:00.189Z"
},
"note-properties": {
"source": "github:quartz-community/note-properties",
"resolved": "https://github.com/quartz-community/note-properties.git",
"commit": "874712a9910299b906606c885ea1fe9602114ca7",
- "installedAt": "2026-05-26T16:15:17.177Z"
+ "installedAt": "2026-06-02T10:09:07.794Z"
},
"obsidian-flavored-markdown": {
"source": "github:quartz-community/obsidian-flavored-markdown",
"resolved": "https://github.com/quartz-community/obsidian-flavored-markdown.git",
"commit": "7f61d4bcf7537d056528f6cecaf5c35b39f74fe8",
- "installedAt": "2026-05-27T18:30:09.459Z"
+ "installedAt": "2026-06-02T10:08:58.452Z"
},
"obsidian-plugin-excalidraw": {
"source": "github:quartz-community/obsidian-plugin-excalidraw",
"resolved": "https://github.com/quartz-community/obsidian-plugin-excalidraw.git",
"commit": "554ae8af7ac4d7fdff8d78e65bfa9b4dd53cbb87",
- "installedAt": "2026-05-27T18:30:09.649Z"
- },
- "obsidian-plugin-ttrpg-tools-maps": {
- "source": "github:quartz-community/obsidian-plugin-ttrpg-tools-maps",
- "resolved": "https://github.com/quartz-community/obsidian-plugin-ttrpg-tools-maps.git",
- "commit": "c43314724a7606dd18b90972c457f593ccded5f5",
- "installedAt": "2026-05-24T15:36:16.983Z"
+ "installedAt": "2026-06-02T10:09:08.523Z"
},
"og-image": {
"source": "github:quartz-community/og-image",
"resolved": "https://github.com/quartz-community/og-image.git",
"commit": "52ea59e2b40dde77abf7fd88eddecf161e671085",
- "installedAt": "2026-05-24T15:36:16.999Z"
+ "installedAt": "2026-06-02T10:09:03.371Z"
},
"ox-hugo": {
"source": "github:quartz-community/ox-hugo",
"resolved": "https://github.com/quartz-community/ox-hugo.git",
"commit": "832871da9ab33d52f904456c1a5e14f1b2057d83",
- "installedAt": "2026-05-24T15:36:16.990Z"
+ "installedAt": "2026-06-02T10:09:00.391Z"
},
"page-title": {
"source": "github:quartz-community/page-title",
"resolved": "https://github.com/quartz-community/page-title.git",
"commit": "a53cf02ce7faca400bcf3cfeed47eb860329e534",
- "installedAt": "2026-05-24T15:36:16.998Z"
+ "installedAt": "2026-06-02T10:09:06.329Z"
},
"quartz-themes": {
"source": {
@@ -208,79 +202,79 @@
"resolved": "https://github.com/saberzero1/quartz-themes.git",
"commit": "0da7355c49aa68cb375726913f41c64ac1f11733",
"subdir": "plugin",
- "installedAt": "2026-05-27T18:31:15.006Z"
+ "installedAt": "2026-06-02T10:10:13.217Z"
},
"reader-mode": {
"source": "github:quartz-community/reader-mode",
"resolved": "https://github.com/quartz-community/reader-mode.git",
"commit": "02e36d3720e10c2087abce23cf0d2e94d53d27f1",
- "installedAt": "2026-05-24T15:36:17.428Z"
+ "installedAt": "2026-06-02T10:09:06.501Z"
},
"recent-notes": {
"source": "github:quartz-community/recent-notes",
"resolved": "https://github.com/quartz-community/recent-notes.git",
"commit": "4505adba9c213967ddf94ea5fc05039245fd9fe9",
- "installedAt": "2026-05-26T20:20:42.557Z"
+ "installedAt": "2026-06-02T10:09:07.065Z"
},
"remove-draft": {
"source": "github:quartz-community/remove-draft",
"resolved": "https://github.com/quartz-community/remove-draft.git",
"commit": "0a51a4c6abb3c86961a9bbf46f4538da87fcf9f8",
- "installedAt": "2026-05-24T15:36:17.446Z"
+ "installedAt": "2026-06-02T10:09:01.042Z"
},
"roam": {
"source": "github:quartz-community/roam",
"resolved": "https://github.com/quartz-community/roam.git",
"commit": "b2aad70fdf548d07b8fd28df9edbdba7f256f166",
- "installedAt": "2026-05-24T15:36:17.448Z"
+ "installedAt": "2026-06-02T10:09:00.837Z"
},
"search": {
"source": "github:quartz-community/search",
"resolved": "https://github.com/quartz-community/search.git",
"commit": "e0ebef9f80b23a015a9252d4ab98b889b08dc8b7",
- "installedAt": "2026-05-24T15:36:17.442Z"
+ "installedAt": "2026-06-02T10:09:05.207Z"
},
"spacer": {
"source": "github:quartz-community/spacer",
"resolved": "https://github.com/quartz-community/spacer.git",
"commit": "64b135dcfb78c4911f8c42d942872d645cd2a456",
- "installedAt": "2026-05-24T15:36:17.428Z"
+ "installedAt": "2026-06-02T10:09:07.232Z"
},
"stacked-pages": {
"source": "github:quartz-community/stacked-pages",
"resolved": "https://github.com/quartz-community/stacked-pages.git",
"commit": "9d67b8dedab5c27db98afd26dfa773e5003b0446",
- "installedAt": "2026-05-24T15:36:17.444Z"
+ "installedAt": "2026-06-02T10:09:01.687Z"
},
"syntax-highlighting": {
"source": "github:quartz-community/syntax-highlighting",
"resolved": "https://github.com/quartz-community/syntax-highlighting.git",
"commit": "5bfdc2c3f42d3d0326c4e777eb575f3fb68d51fb",
- "installedAt": "2026-05-24T15:36:17.446Z"
+ "installedAt": "2026-06-02T10:08:59.657Z"
},
"table-of-contents": {
"source": "github:quartz-community/table-of-contents",
"resolved": "https://github.com/quartz-community/table-of-contents.git",
"commit": "4c25c048a7f788cb156dad0050d80c7ed88692f9",
- "installedAt": "2026-05-24T15:36:17.439Z"
+ "installedAt": "2026-06-02T10:08:59.138Z"
},
"tag-list": {
"source": "github:quartz-community/tag-list",
"resolved": "https://github.com/quartz-community/tag-list.git",
"commit": "0d18b40d26b3499823d46740c35e8ee874ba0ca0",
- "installedAt": "2026-05-24T15:36:17.439Z"
+ "installedAt": "2026-06-02T10:09:05.834Z"
},
"tag-page": {
"source": "github:quartz-community/tag-page",
"resolved": "https://github.com/quartz-community/tag-page.git",
"commit": "82f8a6d5e774de5e075978651b6ca81f2ccb6812",
- "installedAt": "2026-05-24T15:36:17.446Z"
+ "installedAt": "2026-06-02T10:09:04.768Z"
},
"unlisted-pages": {
"source": "github:quartz-community/unlisted-pages",
"resolved": "https://github.com/quartz-community/unlisted-pages.git",
"commit": "be42781fb08a60e9f9268682d457b289094d2838",
- "installedAt": "2026-05-24T15:36:17.406Z"
+ "installedAt": "2026-06-02T10:09:01.461Z"
}
}
}