From 63b7a70a8eb9f512bce5e7c3b82e0c288dba7299 Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Sat, 6 Jul 2024 10:23:14 +0200 Subject: [PATCH] docs: Update flags list Updated the flags list in two files to reflect recent changes in the codebase. Added new flag `--generate-manifest` to the "Static Site Generation" file and added a note about it being similar to the [[Vault Manifests]] feature. Also, added a note about the `--watch` flag implicitly enabling the `--force` flag in both files. --- .../vault/Tool/Static Site Generation.md | 9 +++++---- .../vault/Tool/Vault Manifests.md | 10 +++++----- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/nodsoft_moltenobsidian_web/vault/Tool/Static Site Generation.md b/nodsoft_moltenobsidian_web/vault/Tool/Static Site Generation.md index f8fe6e2..f484012 100644 --- a/nodsoft_moltenobsidian_web/vault/Tool/Static Site Generation.md +++ b/nodsoft_moltenobsidian_web/vault/Tool/Static Site Generation.md @@ -37,7 +37,8 @@ Below are the protocols currently supported for vault exports : Some features of the manifest command are specifically oriented for development and automation purposes. Here is a detailed account of some of the extra features baked into this command. -| Flag | Description | -| --------- | ---------------------------------------------------------------------- | -| `--watch` | Continuously watches for changes and updates the manifest accordingly. | -| `--debug` | Prints out extra information, similar to a verbose flag. | +| Flag | Description | Notes | +| --------------------- | ---------------------------------------------------------------------------------------------------------- | --------------------------------- | +| `--watch` | Continuously watches for changes and updates the manifest accordingly. | Can only be used on local vaults. | +| `--generate-manifest` | Generates a site manifest with the SSG assets. This is similar to running the [[Vault Manifests]] feature. | | +| `--debug` | Prints out extra information, similar to a verbose flag. | | diff --git a/nodsoft_moltenobsidian_web/vault/Tool/Vault Manifests.md b/nodsoft_moltenobsidian_web/vault/Tool/Vault Manifests.md index 08df4cf..cf6a941 100644 --- a/nodsoft_moltenobsidian_web/vault/Tool/Vault Manifests.md +++ b/nodsoft_moltenobsidian_web/vault/Tool/Vault Manifests.md @@ -35,8 +35,8 @@ For reference, these are the default exclusions: Some features of the manifest command are specifically oriented for development and automation purposes. Here is a detailed account of some of the extra features baked into this command. -| Flag | Description | -| --------- | ------------------------------------------------------------------------ | -| `--force` | Forces any existing manifest found at the output path to be overwritten. | -| `--watch` | Continuously watches for changes and updates the manifest accordingly. | -| `--debug` | Prints out extra information, similar to a verbose flag. | +| Flag | Description | Notes | +| --------- | ------------------------------------------------------------------------ | -------------------------------------- | +| `--force` | Forces any existing manifest found at the output path to be overwritten. | | +| `--watch` | Continuously watches for changes and updates the manifest accordingly. | Implicitly enables the `--force` flag. | +| `--debug` | Prints out extra information, similar to a verbose flag. | |