gitextract_71a7u_g6/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── build-preview.yaml │ ├── ci.yaml │ ├── deploy-preview.yaml │ └── docker-build-push.yaml ├── .node-version ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── content/ │ └── .gitkeep ├── docs/ │ ├── advanced/ │ │ ├── architecture.md │ │ ├── creating components.md │ │ ├── index.md │ │ ├── making plugins.md │ │ └── paths.md │ ├── authoring content.md │ ├── build.md │ ├── configuration.md │ ├── features/ │ │ ├── Citations.md │ │ ├── Docker Support.md │ │ ├── Latex.md │ │ ├── Mermaid diagrams.md │ │ ├── Obsidian compatibility.md │ │ ├── OxHugo compatibility.md │ │ ├── RSS Feed.md │ │ ├── Roam Research compatibility.md │ │ ├── SPA Routing.md │ │ ├── backlinks.md │ │ ├── breadcrumbs.md │ │ ├── callouts.md │ │ ├── comments.md │ │ ├── darkmode.md │ │ ├── explorer.md │ │ ├── folder and tag listings.md │ │ ├── full-text search.md │ │ ├── graph view.md │ │ ├── i18n.md │ │ ├── index.md │ │ ├── popover previews.md │ │ ├── private pages.md │ │ ├── reader mode.md │ │ ├── recent notes.md │ │ ├── social images.md │ │ ├── syntax highlighting.md │ │ ├── table of contents.md │ │ ├── upcoming features.md │ │ └── wikilinks.md │ ├── hosting.md │ ├── index.md │ ├── layout-components.md │ ├── layout.md │ ├── migrating from Quartz 3.md │ ├── philosophy.md │ ├── plugins/ │ │ ├── AliasRedirects.md │ │ ├── Assets.md │ │ ├── CNAME.md │ │ ├── Citations.md │ │ ├── ComponentResources.md │ │ ├── ContentIndex.md │ │ ├── ContentPage.md │ │ ├── CrawlLinks.md │ │ ├── CreatedModifiedDate.md │ │ ├── CustomOgImages.md │ │ ├── Description.md │ │ ├── ExplicitPublish.md │ │ ├── Favicon.md │ │ ├── FolderPage.md │ │ ├── Frontmatter.md │ │ ├── GitHubFlavoredMarkdown.md │ │ ├── HardLineBreaks.md │ │ ├── Latex.md │ │ ├── NotFoundPage.md │ │ ├── ObsidianFlavoredMarkdown.md │ │ ├── OxHugoFlavoredMarkdown.md │ │ ├── RemoveDrafts.md │ │ ├── RoamFlavoredMarkdown.md │ │ ├── Static.md │ │ ├── SyntaxHighlighting.md │ │ ├── TableOfContents.md │ │ ├── TagPage.md │ │ └── index.md │ ├── setting up your GitHub repository.md │ ├── showcase.md │ ├── tags/ │ │ ├── component.md │ │ └── plugin.md │ └── upgrading.md ├── globals.d.ts ├── index.d.ts ├── package.json ├── quartz/ │ ├── bootstrap-cli.mjs │ ├── bootstrap-worker.mjs │ ├── build.ts │ ├── cfg.ts │ ├── cli/ │ │ ├── args.js │ │ ├── constants.js │ │ ├── handlers.js │ │ └── helpers.js │ ├── components/ │ │ ├── ArticleTitle.tsx │ │ ├── Backlinks.tsx │ │ ├── Body.tsx │ │ ├── Breadcrumbs.tsx │ │ ├── Comments.tsx │ │ ├── ConditionalRender.tsx │ │ ├── ContentMeta.tsx │ │ ├── Darkmode.tsx │ │ ├── Date.tsx │ │ ├── DesktopOnly.tsx │ │ ├── Explorer.tsx │ │ ├── Flex.tsx │ │ ├── Footer.tsx │ │ ├── Graph.tsx │ │ ├── Head.tsx │ │ ├── Header.tsx │ │ ├── MobileOnly.tsx │ │ ├── OverflowList.tsx │ │ ├── PageList.tsx │ │ ├── PageTitle.tsx │ │ ├── ReaderMode.tsx │ │ ├── RecentNotes.tsx │ │ ├── Search.tsx │ │ ├── Spacer.tsx │ │ ├── TableOfContents.tsx │ │ ├── TagList.tsx │ │ ├── index.ts │ │ ├── pages/ │ │ │ ├── 404.tsx │ │ │ ├── Content.tsx │ │ │ ├── FolderContent.tsx │ │ │ └── TagContent.tsx │ │ ├── renderPage.tsx │ │ ├── scripts/ │ │ │ ├── callout.inline.ts │ │ │ ├── checkbox.inline.ts │ │ │ ├── clipboard.inline.ts │ │ │ ├── comments.inline.ts │ │ │ ├── darkmode.inline.ts │ │ │ ├── explorer.inline.ts │ │ │ ├── graph.inline.ts │ │ │ ├── mermaid.inline.ts │ │ │ ├── popover.inline.ts │ │ │ ├── readermode.inline.ts │ │ │ ├── search.inline.ts │ │ │ ├── search.test.ts │ │ │ ├── spa.inline.ts │ │ │ ├── toc.inline.ts │ │ │ └── util.ts │ │ ├── styles/ │ │ │ ├── backlinks.scss │ │ │ ├── breadcrumbs.scss │ │ │ ├── clipboard.scss │ │ │ ├── contentMeta.scss │ │ │ ├── darkmode.scss │ │ │ ├── explorer.scss │ │ │ ├── footer.scss │ │ │ ├── graph.scss │ │ │ ├── legacyToc.scss │ │ │ ├── listPage.scss │ │ │ ├── mermaid.inline.scss │ │ │ ├── popover.scss │ │ │ ├── readermode.scss │ │ │ ├── recentNotes.scss │ │ │ ├── search.scss │ │ │ └── toc.scss │ │ └── types.ts │ ├── i18n/ │ │ ├── index.ts │ │ └── locales/ │ │ ├── ar-SA.ts │ │ ├── ca-ES.ts │ │ ├── cs-CZ.ts │ │ ├── de-DE.ts │ │ ├── definition.ts │ │ ├── en-GB.ts │ │ ├── en-US.ts │ │ ├── es-ES.ts │ │ ├── fa-IR.ts │ │ ├── fi-FI.ts │ │ ├── fr-FR.ts │ │ ├── he-IL.ts │ │ ├── hu-HU.ts │ │ ├── id-ID.ts │ │ ├── it-IT.ts │ │ ├── ja-JP.ts │ │ ├── kk-KZ.ts │ │ ├── ko-KR.ts │ │ ├── lt-LT.ts │ │ ├── nb-NO.ts │ │ ├── nl-NL.ts │ │ ├── pl-PL.ts │ │ ├── pt-BR.ts │ │ ├── ro-RO.ts │ │ ├── ru-RU.ts │ │ ├── th-TH.ts │ │ ├── tr-TR.ts │ │ ├── uk-UA.ts │ │ ├── vi-VN.ts │ │ ├── zh-CN.ts │ │ └── zh-TW.ts │ ├── plugins/ │ │ ├── emitters/ │ │ │ ├── 404.tsx │ │ │ ├── aliases.ts │ │ │ ├── assets.ts │ │ │ ├── cname.ts │ │ │ ├── componentResources.ts │ │ │ ├── contentIndex.tsx │ │ │ ├── contentPage.tsx │ │ │ ├── favicon.ts │ │ │ ├── folderPage.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── ogImage.tsx │ │ │ ├── static.ts │ │ │ └── tagPage.tsx │ │ ├── filters/ │ │ │ ├── draft.ts │ │ │ ├── explicit.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── transformers/ │ │ │ ├── citations.ts │ │ │ ├── description.ts │ │ │ ├── frontmatter.ts │ │ │ ├── gfm.ts │ │ │ ├── index.ts │ │ │ ├── lastmod.ts │ │ │ ├── latex.ts │ │ │ ├── linebreaks.ts │ │ │ ├── links.ts │ │ │ ├── ofm.ts │ │ │ ├── oxhugofm.ts │ │ │ ├── roam.ts │ │ │ ├── syntax.ts │ │ │ └── toc.ts │ │ ├── types.ts │ │ └── vfile.ts │ ├── processors/ │ │ ├── emit.ts │ │ ├── filter.ts │ │ └── parse.ts │ ├── static/ │ │ └── giscus/ │ │ ├── dark.css │ │ └── light.css │ ├── styles/ │ │ ├── base.scss │ │ ├── callouts.scss │ │ ├── custom.scss │ │ ├── syntax.scss │ │ └── variables.scss │ ├── util/ │ │ ├── clone.ts │ │ ├── ctx.ts │ │ ├── emoji.ts │ │ ├── emojimap.json │ │ ├── escape.ts │ │ ├── fileTrie.test.ts │ │ ├── fileTrie.ts │ │ ├── glob.ts │ │ ├── jsx.tsx │ │ ├── lang.ts │ │ ├── log.ts │ │ ├── og.tsx │ │ ├── path.test.ts │ │ ├── path.ts │ │ ├── perf.ts │ │ ├── random.ts │ │ ├── resources.tsx │ │ ├── sourcemap.ts │ │ ├── theme.ts │ │ └── trace.ts │ └── worker.ts ├── quartz.config.ts ├── quartz.layout.ts └── tsconfig.json