Tests
This commit is contained in:
parent
39d9e2e2c1
commit
035d3a12ee
|
|
@ -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" }),
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
@use "./base.scss";
|
||||||
|
|
||||||
|
// put your custom CSS here!
|
||||||
|
.text-comment
|
||||||
|
{
|
||||||
|
color: gray;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue