Skip to content

Commit af1d282

Browse files
magicaldavesaberzero1soukoukidependabot[bot]jackyzha0
authored
Quartz 03f23e5 (#64)
* fix(translusion): block reference not being recognized. (#1274) * Fix CreatedModifiedDate.md (#1281) Fixed a broken parentheses correspondence for code fragments that appear in the documentation. * chore(deps): bump preact from 10.22.0 to 10.22.1 (#1278) Bumps [preact](https://github.com/preactjs/preact) from 10.22.0 to 10.22.1. - [Release notes](https://github.com/preactjs/preact/releases) - [Commits](preactjs/preact@10.22.0...10.22.1) --- updated-dependencies: - dependency-name: preact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump mdast-util-to-hast from 13.1.0 to 13.2.0 (#1279) Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.1.0 to 13.2.0. - [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases) - [Commits](syntax-tree/mdast-util-to-hast@13.1.0...13.2.0) --- updated-dependencies: - dependency-name: mdast-util-to-hast dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump ws and @types/ws (#1280) Bumps [ws](https://github.com/websockets/ws) and [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws). These dependencies needed to be updated together. Updates `ws` from 8.17.1 to 8.18.0 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@8.17.1...8.18.0) Updates `@types/ws` from 8.5.10 to 8.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws) --- updated-dependencies: - dependency-name: ws dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: "@types/ws" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump lightningcss from 1.24.1 to 1.25.1 (#1276) Bumps [lightningcss](https://github.com/parcel-bundler/lightningcss) from 1.24.1 to 1.25.1. - [Release notes](https://github.com/parcel-bundler/lightningcss/releases) - [Commits](parcel-bundler/lightningcss@v1.24.1...v1.25.1) --- updated-dependencies: - dependency-name: lightningcss dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * i18n: disambiguate en-us and en-gb * feat: comments (giscus) * FIX: Update quartz layout to new giscus format --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Emile Bangma <[email protected]> Co-authored-by: sou7 <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jacky Zhao <[email protected]>
1 parent 1db3f8e commit af1d282

File tree

6 files changed

+145
-95
lines changed

6 files changed

+145
-95
lines changed

Diff for: package-lock.json

+56-56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
"hast-util-to-string": "^3.0.0",
5454
"is-absolute-url": "^4.0.1",
5555
"js-yaml": "^4.1.0",
56-
"lightningcss": "^1.24.1",
56+
"lightningcss": "^1.25.1",
5757
"mdast-util-find-and-replace": "^3.0.1",
58-
"mdast-util-to-hast": "^13.1.0",
58+
"mdast-util-to-hast": "^13.2.0",
5959
"mdast-util-to-string": "^4.0.0",
6060
"micromorph": "^0.4.5",
61-
"preact": "^10.22.0",
61+
"preact": "^10.22.1",
6262
"preact-render-to-string": "^6.5.5",
6363
"pretty-bytes": "^6.1.1",
6464
"pretty-time": "^1.1.0",
@@ -89,7 +89,7 @@
8989
"unist-util-visit": "^5.0.0",
9090
"vfile": "^6.0.1",
9191
"workerpool": "^9.1.2",
92-
"ws": "^8.17.1",
92+
"ws": "^8.18.0",
9393
"yargs": "^17.7.2"
9494
},
9595
"devDependencies": {
@@ -100,7 +100,7 @@
100100
"@types/node": "^20.12.5",
101101
"@types/pretty-time": "^1.1.5",
102102
"@types/source-map-support": "^0.5.10",
103-
"@types/ws": "^8.5.10",
103+
"@types/ws": "^8.5.11",
104104
"@types/yargs": "^17.0.32",
105105
"esbuild": "^0.19.9",
106106
"prettier": "^3.3.2",

Diff for: quartz.layout.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,21 @@ import * as Component from "./quartz/components"
55
export const sharedPageComponents: SharedLayout = {
66
head: Component.Head(),
77
header: [Component.LinksHeader()],
8-
afterBody: [],
8+
afterBody: [Component.Comments({
9+
provider: 'giscus',
10+
options: {
11+
// from data-repo
12+
repo: 'morrowind-modding/wiki',
13+
// from data-repo-id
14+
repoId: 'R_kgDOLP1-Jw',
15+
// from data-category
16+
category: 'General',
17+
// from data-category-id
18+
categoryId: 'DIC_kwDOLP1-J84CdRF9',
19+
reactionsEnabled: true,
20+
}
21+
}),
22+
],
923
footer: Component.Footer({
1024
links: {
1125
GitHub: "https://github.com/morrowind-modding/wiki",
@@ -36,7 +50,6 @@ export const defaultContentPageLayout: PageLayout = {
3650
Component.Graph(),
3751
Component.DesktopOnly(Component.TableOfContents()),
3852
Component.Backlinks(),
39-
Component.Comments(),
4053
],
4154
}
4255

@@ -57,6 +70,5 @@ export const defaultListPageLayout: PageLayout = {
5770
Component.Graph(),
5871
Component.DesktopOnly(Component.TableOfContents()),
5972
Component.Backlinks(),
60-
Component.Comments(),
6173
],
6274
}

0 commit comments

Comments
 (0)