Jacky Zhao
2024-02-04 3fb3930df8d3bc61bbf6ac69360a1b5949270cca
fix: calculate heading after latex (closes #719)
2 files modified
5 ■■■■■ changed files
quartz.config.ts 2 ●●● patch | view | raw | blame | history
quartz/plugins/transformers/toc.ts 3 ●●●● patch | view | raw | blame | history
quartz.config.ts
@@ -45,7 +45,6 @@
  plugins: {
    transformers: [
      Plugin.FrontMatter(),
      Plugin.TableOfContents(),
      Plugin.CreatedModifiedDate({
        // you can add 'git' here for last modified from Git
        // if you do rely on git for dates, ensure defaultDateType is 'modified'
@@ -55,6 +54,7 @@
      Plugin.SyntaxHighlighting(),
      Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
      Plugin.GitHubFlavoredMarkdown(),
      Plugin.TableOfContents(),
      Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
      Plugin.Description(),
    ],
quartz/plugins/transformers/toc.ts
@@ -26,6 +26,7 @@
}
const regexMdLinks = new RegExp(/\[([^\[]+)\](\(.*\))/, "g")
const slugAnchor = new Slugger()
export const TableOfContents: QuartzTransformerPlugin<Partial<Options> | undefined> = (
  userOpts,
) => {
@@ -38,7 +39,7 @@
          return async (tree: Root, file) => {
            const display = file.data.frontmatter?.enableToc ?? opts.showByDefault
            if (display) {
              const slugAnchor = new Slugger()
              slugAnchor.reset()
              const toc: TocEntry[] = []
              let highestDepth: number = opts.maxDepth
              visit(tree, "heading", (node) => {