The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)

authored by

kanpov and committed by
GitHub
0aaf88b8 a1a1e7e1

+1 -3
content/.gitkeep

This is a binary file and will not be displayed.

content/advanced/architecture.md docs/advanced/architecture.md
content/advanced/creating components.md docs/advanced/creating components.md
content/advanced/making plugins.md docs/advanced/making plugins.md
content/advanced/paths.md docs/advanced/paths.md
content/authoring content.md docs/authoring content.md
content/build.md docs/build.md
content/configuration.md docs/configuration.md
content/features/Latex.md docs/features/Latex.md
content/features/Mermaid diagrams.md docs/features/Mermaid diagrams.md
content/features/Obsidian compatibility.md docs/features/Obsidian compatibility.md
content/features/RSS Feed.md docs/features/RSS Feed.md
content/features/SPA Routing.md docs/features/SPA Routing.md
content/features/backlinks.md docs/features/backlinks.md
content/features/callouts.md docs/features/callouts.md
content/features/darkmode.md docs/features/darkmode.md
content/features/folder and tag listings.md docs/features/folder and tag listings.md
content/features/full-text search.md docs/features/full-text search.md
content/features/graph view.md docs/features/graph view.md
content/features/index.md docs/features/index.md
content/features/popover previews.md docs/features/popover previews.md
content/features/private pages.md docs/features/private pages.md
content/features/recent notes.md docs/features/recent notes.md
content/features/syntax highlighting.md docs/features/syntax highlighting.md
content/features/table of contents.md docs/features/table of contents.md
content/features/upcoming features.md docs/features/upcoming features.md
content/features/wikilinks.md docs/features/wikilinks.md
content/hosting.md docs/hosting.md
content/images/dns records.png docs/images/dns records.png
content/images/quartz layout.png docs/images/quartz layout.png
content/images/quartz transform pipeline.png docs/images/quartz transform pipeline.png
content/index.md docs/index.md
content/layout.md docs/layout.md
content/migrating from Quartz 3.md docs/migrating from Quartz 3.md
content/philosophy.md docs/philosophy.md
content/showcase.md docs/showcase.md
content/tags/component.md docs/tags/component.md
content/upgrading.md docs/upgrading.md
+1 -3
quartz/bootstrap-cli.mjs
··· 162 162 label: "Symlink an existing folder", 163 163 hint: "don't select this unless you know what you are doing!", 164 164 }, 165 - { value: "keep", label: "Keep the existing files" }, 166 165 ], 167 166 }), 168 167 ) ··· 176 175 } 177 176 } 178 177 178 + await fs.promises.unlink(path.join(contentFolder, ".gitkeep")) 179 179 if (setupStrategy === "copy" || setupStrategy === "symlink") { 180 180 const originalFolder = escapePath( 181 181 exitIfCancel( ··· 205 205 await fs.promises.symlink(originalFolder, contentFolder, "dir") 206 206 } 207 207 } else if (setupStrategy === "new") { 208 - await rmContentFolder() 209 - await fs.promises.mkdir(contentFolder) 210 208 await fs.promises.writeFile( 211 209 path.join(contentFolder, "index.md"), 212 210 `---