kanpov
2023-08-23 0aaf88b8521e2bc667cae525356eea3550ad9c96
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)

1 files added
1 files modified
37 files renamed
4 ■■■ changed files
content/.gitkeep patch | view | raw | blame | history
docs/advanced/architecture.md patch | view | raw | blame | history
docs/advanced/creating components.md patch | view | raw | blame | history
docs/advanced/making plugins.md patch | view | raw | blame | history
docs/advanced/paths.md patch | view | raw | blame | history
docs/authoring content.md patch | view | raw | blame | history
docs/build.md patch | view | raw | blame | history
docs/configuration.md patch | view | raw | blame | history
docs/features/Latex.md patch | view | raw | blame | history
docs/features/Mermaid diagrams.md patch | view | raw | blame | history
docs/features/Obsidian compatibility.md patch | view | raw | blame | history
docs/features/RSS Feed.md patch | view | raw | blame | history
docs/features/SPA Routing.md patch | view | raw | blame | history
docs/features/backlinks.md patch | view | raw | blame | history
docs/features/callouts.md patch | view | raw | blame | history
docs/features/darkmode.md patch | view | raw | blame | history
docs/features/folder and tag listings.md patch | view | raw | blame | history
docs/features/full-text search.md patch | view | raw | blame | history
docs/features/graph view.md patch | view | raw | blame | history
docs/features/index.md patch | view | raw | blame | history
docs/features/popover previews.md patch | view | raw | blame | history
docs/features/private pages.md patch | view | raw | blame | history
docs/features/recent notes.md patch | view | raw | blame | history
docs/features/syntax highlighting.md patch | view | raw | blame | history
docs/features/table of contents.md patch | view | raw | blame | history
docs/features/upcoming features.md patch | view | raw | blame | history
docs/features/wikilinks.md patch | view | raw | blame | history
docs/hosting.md patch | view | raw | blame | history
docs/images/dns records.png patch | view | raw | blame | history
docs/images/quartz layout.png patch | view | raw | blame | history
docs/images/quartz transform pipeline.png patch | view | raw | blame | history
docs/index.md patch | view | raw | blame | history
docs/layout.md patch | view | raw | blame | history
docs/migrating from Quartz 3.md patch | view | raw | blame | history
docs/philosophy.md patch | view | raw | blame | history
docs/showcase.md patch | view | raw | blame | history
docs/tags/component.md patch | view | raw | blame | history
docs/upgrading.md patch | view | raw | blame | history
quartz/bootstrap-cli.mjs 4 ●●● patch | view | raw | blame | history
content/.gitkeep
docs/advanced/architecture.md
docs/advanced/creating components.md
docs/advanced/making plugins.md
docs/advanced/paths.md
docs/authoring content.md
docs/build.md
docs/configuration.md
docs/features/Latex.md
docs/features/Mermaid diagrams.md
docs/features/Obsidian compatibility.md
docs/features/RSS Feed.md
docs/features/SPA Routing.md
docs/features/backlinks.md
docs/features/callouts.md
docs/features/darkmode.md
docs/features/folder and tag listings.md
docs/features/full-text search.md
docs/features/graph view.md
docs/features/index.md
docs/features/popover previews.md
docs/features/private pages.md
docs/features/recent notes.md
docs/features/syntax highlighting.md
docs/features/table of contents.md
docs/features/upcoming features.md
docs/features/wikilinks.md
docs/hosting.md
docs/images/dns records.png

docs/images/quartz layout.png

docs/images/quartz transform pipeline.png

docs/index.md
docs/layout.md
docs/migrating from Quartz 3.md
docs/philosophy.md
docs/showcase.md
docs/tags/component.md
docs/upgrading.md
quartz/bootstrap-cli.mjs
@@ -162,7 +162,6 @@
            label: "Symlink an existing folder",
            hint: "don't select this unless you know what you are doing!",
          },
          { value: "keep", label: "Keep the existing files" },
        ],
      }),
    )
@@ -176,6 +175,7 @@
      }
    }
    await fs.promises.unlink(path.join(contentFolder, ".gitkeep"))
    if (setupStrategy === "copy" || setupStrategy === "symlink") {
      const originalFolder = escapePath(
        exitIfCancel(
@@ -205,8 +205,6 @@
        await fs.promises.symlink(originalFolder, contentFolder, "dir")
      }
    } else if (setupStrategy === "new") {
      await rmContentFolder()
      await fs.promises.mkdir(contentFolder)
      await fs.promises.writeFile(
        path.join(contentFolder, "index.md"),
        `---