···4949 priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower
5050 }),
5151 Plugin.SyntaxHighlighting(),
5252- Plugin.ObsidianFlavoredMarkdown(),
5252+ Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
5353 Plugin.GitHubFlavoredMarkdown(),
5454 Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
5555 Plugin.Latex({ renderEngine: "katex" }),
+2-2
quartz/bootstrap-cli.mjs
···246246 console.log(
247247 "Pulling updates... you may need to resolve some `git` conflicts if you've made changes to components or plugins.",
248248 )
249249- spawnSync("git", ["pull", UPSTREAM_NAME, QUARTZ_SOURCE_BRANCH], { stdio: "inherit" })
249249+ spawnSync("git", ["rebase", UPSTREAM_NAME, QUARTZ_SOURCE_BRANCH], { stdio: "inherit" })
250250 await popContentFolder(contentFolder)
251251 console.log("Ensuring dependencies are up to date")
252252 spawnSync("npm", ["i"], { stdio: "inherit" })
···271271 console.log(
272272 "Pulling updates from your repository. You may need to resolve some `git` conflicts if you've made changes to components or plugins.",
273273 )
274274- spawnSync("git", ["pull", "origin", QUARTZ_SOURCE_BRANCH], { stdio: "inherit" })
274274+ spawnSync("git", ["rebase", "origin", QUARTZ_SOURCE_BRANCH], { stdio: "inherit" })
275275 }
276276277277 await popContentFolder(contentFolder)