From d5a5702867e6ade7d0fa4877e4e7e3cd06c1f860 Mon Sep 17 00:00:00 2001 From: teapot1de <121592812+ywh555hhh@users.noreply.github.com> Date: Sun, 11 Aug 2024 14:25:08 +0800 Subject: [PATCH] Update README.md use markdownlint to fix README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 8cfacabab81cf..1c3c43766e605 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,14 @@ cd website The Kubernetes website uses the [Docsy Hugo theme](https://github.com/google/docsy#readme). Even if you plan to run the website in a container, we strongly recommend pulling in the submodule and other development dependencies by running the following: ### Windows + ```powershell # fetch submodule dependencies git submodule update --init --recursive --depth 1 ``` ### Linux / other Unix + ```bash # fetch submodule dependencies make module-init @@ -62,11 +64,14 @@ Open up your browser to to view the website. As you make To install dependencies, deploy and test the site locally, run: - For macOS and Linux + ```bash npm ci make serve ``` + - For Windows (PowerShell) + ```powershell npm ci hugo.exe server --buildFuture --environment development