diff --git a/The Accursed Voyage of The Mariner's Fortune/Sessions/Session 001.md b/The Accursed Voyage of The Mariner's Fortune/Sessions/Session 001.md index 84ed70a..150e596 100644 --- a/The Accursed Voyage of The Mariner's Fortune/Sessions/Session 001.md +++ b/The Accursed Voyage of The Mariner's Fortune/Sessions/Session 001.md @@ -10,7 +10,7 @@ tags: ## Session Summary - > [!tldr] The party received a mission from Marcus Valden. + > [!tldr] On the 22nd of Hoarfrost, 1724, Marie, Magnus Brand, and Crofton Dudley met with Marcus Valden of the Brotherhood of Coin, who requested their assistance with the disappearance of The Mariner’s Fortune, a ship carrying Ember Steel to House Renaux. The ship left Varlaine 17 days prior but was yet to arrive in Cap Lumiere. Six bodies of the crew of The Mariner's Fortune had washed ashore. At the morgue, the examined bodies showed no signs of external injury but were in an advanced state of decay and devoid of blood. An amulet found on one of the bodies provided Magnus with a vision of a dark raven. Further research at the Crystalum Academy Library led to information on the Shattered Isles, the Scourged, and the Raven King, Ymros, whose imagery matched the amulet. Plans were made to investigate the beach where the bodies were discovered before their scheduled departure aboard The Interceptor. > ^summary --- diff --git a/The Accursed Voyage of The Mariner's Fortune/quartz.config.ts b/The Accursed Voyage of The Mariner's Fortune/quartz.config.ts new file mode 100644 index 0000000..c51c662 --- /dev/null +++ b/The Accursed Voyage of The Mariner's Fortune/quartz.config.ts @@ -0,0 +1,95 @@ +import { QuartzConfig } from "./quartz/cfg" +import * as Plugin from "./quartz/plugins" + +/** + * Quartz 4.0 Configuration + * + * See https://quartz.jzhao.xyz/configuration for more information. + */ +const config: QuartzConfig = { + configuration: { + pageTitle: "The Accursed Voyage of The Mariner's Fortune", + pageTitleSuffix: "", + enableSPA: true, + enablePopovers: true, + analytics: { + provider: "plausible", + }, + locale: "en-US", + baseUrl: "quartz.jzhao.xyz", + ignorePatterns: ["private", "templates", ".obsidian"], + defaultDateType: "modified", + generateSocialImages: false, + 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: { + transformers: [ + Plugin.FrontMatter(), + Plugin.CreatedModifiedDate({ + priority: ["frontmatter", "git", "filesystem"], + }), + Plugin.SyntaxHighlighting({ + theme: { + light: "github-light", + dark: "github-dark", + }, + keepBackground: false, + }), + Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }), + Plugin.GitHubFlavoredMarkdown(), + Plugin.TableOfContents(), + Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }), + Plugin.Description(), + Plugin.Latex({ renderEngine: "katex" }), + ], + filters: [Plugin.RemoveDrafts()], + emitters: [ + Plugin.AliasRedirects(), + Plugin.ComponentResources(), + Plugin.ContentPage(), + Plugin.FolderPage(), + Plugin.TagPage(), + Plugin.ContentIndex({ + enableSiteMap: true, + enableRSS: true, + }), + Plugin.Assets(), + Plugin.Static(), + Plugin.NotFoundPage(), + ], + }, +} + +export default config