You've already forked system-aspect
Tests
This commit is contained in:
2
.github/quartz/quartz.config.ts
vendored
2
.github/quartz/quartz.config.ts
vendored
@@ -49,7 +49,7 @@ const config: QuartzConfig = {
|
|||||||
}),
|
}),
|
||||||
Plugin.SyntaxHighlighting(),
|
Plugin.SyntaxHighlighting(),
|
||||||
Plugin.Comments(),
|
Plugin.Comments(),
|
||||||
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false, comments: false }),
|
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
|
||||||
Plugin.GitHubFlavoredMarkdown(),
|
Plugin.GitHubFlavoredMarkdown(),
|
||||||
Plugin.CrawlLinks({ markdownLinkResolution: "relative" }),
|
Plugin.CrawlLinks({ markdownLinkResolution: "relative" }),
|
||||||
Plugin.Latex({ renderEngine: "katex" }),
|
Plugin.Latex({ renderEngine: "katex" }),
|
||||||
|
|||||||
12
.github/quartz/quartz/plugins/transformers/index.ts
vendored
Normal file
12
.github/quartz/quartz/plugins/transformers/index.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
export { FrontMatter } from "./frontmatter"
|
||||||
|
export { Comments } from "./comments"
|
||||||
|
export { GitHubFlavoredMarkdown } from "./gfm"
|
||||||
|
export { CreatedModifiedDate } from "./lastmod"
|
||||||
|
export { Latex } from "./latex"
|
||||||
|
export { Description } from "./description"
|
||||||
|
export { CrawlLinks } from "./links"
|
||||||
|
export { ObsidianFlavoredMarkdown } from "./ofm"
|
||||||
|
export { OxHugoFlavouredMarkdown } from "./oxhugofm"
|
||||||
|
export { SyntaxHighlighting } from "./syntax"
|
||||||
|
export { TableOfContents } from "./toc"
|
||||||
|
export { HardLineBreaks } from "./linebreaks"
|
||||||
8
.github/quartz/quartz/styles/custom.scss
vendored
Normal file
8
.github/quartz/quartz/styles/custom.scss
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
@use "./base.scss";
|
||||||
|
|
||||||
|
// put your custom CSS here!
|
||||||
|
.text-comment
|
||||||
|
{
|
||||||
|
color: gray;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user