my_digital_garden/quartz/cfg.ts

49 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-07-01 08:03:01 +01:00
import { QuartzComponent } from "./components/types"
import { PluginTypes } from "./plugins/types"
2023-08-17 06:09:11 +01:00
import { Theme } from "./util/theme"
2023-05-30 16:02:20 +01:00
2023-07-10 03:32:24 +01:00
export type Analytics =
| null
2023-07-02 21:08:29 +01:00
| {
2023-07-23 01:27:41 +01:00
provider: "plausible"
}
2023-07-02 21:08:29 +01:00
| {
2023-07-23 01:27:41 +01:00
provider: "google"
tagId: string
}
2023-07-02 21:08:29 +01:00
2023-06-01 22:35:31 +01:00
export interface GlobalConfiguration {
2023-07-23 01:27:41 +01:00
pageTitle: string
2023-06-01 22:35:31 +01:00
/** Whether to enable single-page-app style rendering. this prevents flashes of unstyled content and improves smoothness of Quartz */
2023-07-23 01:27:41 +01:00
enableSPA: boolean
2023-07-01 08:03:01 +01:00
/** Whether to display Wikipedia-style popovers when hovering over links */
2023-07-23 01:27:41 +01:00
enablePopovers: boolean
2023-07-02 21:08:29 +01:00
/** Analytics mode */
2023-07-10 03:32:24 +01:00
analytics: Analytics
2023-06-01 22:35:31 +01:00
/** Glob patterns to not search */
2023-07-23 01:27:41 +01:00
ignorePatterns: string[]
2023-07-01 21:35:27 +01:00
/** Base URL to use for CNAME files, sitemaps, and RSS feeds that require an absolute URL.
2023-07-23 01:27:41 +01:00
* Quartz will avoid using this as much as possible and use relative URLs most of the time
*/
baseUrl?: string
2023-06-01 22:35:31 +01:00
theme: Theme
2023-05-30 16:02:20 +01:00
}
export interface QuartzConfig {
2023-07-23 01:27:41 +01:00
configuration: GlobalConfiguration
plugins: PluginTypes
2023-05-30 16:02:20 +01:00
}
2023-07-01 08:03:01 +01:00
export interface FullPageLayout {
head: QuartzComponent
2023-07-23 01:27:41 +01:00
header: QuartzComponent[]
beforeBody: QuartzComponent[]
pageBody: QuartzComponent
left: QuartzComponent[]
right: QuartzComponent[]
footer: QuartzComponent
2023-07-01 08:03:01 +01:00
}
export type PageLayout = Pick<FullPageLayout, "beforeBody" | "left" | "right">
export type SharedLayout = Pick<FullPageLayout, "head" | "header" | "footer">