This commit is contained in:
Peaceultime 2023-12-21 00:49:58 +01:00
parent 39d9e2e2c1
commit 035d3a12ee
3 changed files with 21 additions and 1 deletions

View File

@ -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" }),

View 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"

View File

@ -0,0 +1,8 @@
@use "./base.scss";
// put your custom CSS here!
.text-comment
{
color: gray;
font-size: 0.8em;
}