### Installing Markdown-to-Starlight Tool (Bash) Source: https://github.com/janreges/markdown-to-starlight/blob/main/README.md Provides the necessary bash commands to clone the repository, navigate into the project directory, and install the required Node.js dependencies using npm. This prepares the tool for use locally. ```bash git clone https://github.com/janreges/markdown-to-starlight.git cd markdown-to-starlight npm install ``` -------------------------------- ### Generating Starlight Docs from Local File (Bash) Source: https://github.com/janreges/markdown-to-starlight/blob/main/README.md Executes the documentation generation script (`npm run gen`) with the `--file` argument, specifying the local file path to the Markdown file to be processed. This generates the Starlight-compatible documentation structure from a file on the local filesystem. ```bash npm run gen -- --file=/path/to/my/file.md ``` -------------------------------- ### Generating Starlight Docs from Remote URL (Bash) Source: https://github.com/janreges/markdown-to-starlight/blob/main/README.md Executes the documentation generation script (`npm run gen`) with the `--url` argument, specifying the URL of the raw Markdown file to be processed. This generates the Starlight-compatible documentation structure from a file hosted online. ```bash npm run gen -- --url=https://raw.githubusercontent.com/janreges/siteone-website-crawler/main/README.md ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.